Skip to content

Commit

Permalink
ignore additional plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
ManApart committed Jun 22, 2024
1 parent 3c8e3e7 commit 19d56ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/commands/Esps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fun esp(args: List<String>) {
return
}

args.first() == "refresh" -> {
args.firstOrNull() == "refresh" -> {
val i = args.last().toIntOrNull()
if (i != null) {
toolData.byIndex(i)?.let {
Expand Down Expand Up @@ -138,4 +138,4 @@ private fun display(mods: Map<Mod, List<String>>) {
}
}
Table(columns, data).print()
}
}
2 changes: 1 addition & 1 deletion src/main/kotlin/commands/ExternalPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import yellow
import java.io.File
import java.nio.file.Files

private val ignoredExternalPlugins = listOf("Starfield", "OldMars", "Constellation", "BlueprintShips-Starfield")
private val ignoredExternalPlugins = listOf("Starfield", "OldMars", "Constellation", "BlueprintShips-Starfield", "SFBGS003", "SFBGS006", "SFBGS007", "SFBGS008")

val externalModDescription = """
Tools for managing external plugins
Expand Down

0 comments on commit 19d56ab

Please sign in to comment.