particles to spawn on their true position

This commit is contained in:
minjaesong
2023-10-14 18:06:15 +09:00
parent d546b081f0
commit 3c79586410
2 changed files with 48 additions and 41 deletions

View File

@@ -486,7 +486,7 @@ object ModMgr {
}
fun getLoadOrderTextForSavegame(): String {
return loadOrder.map { "$it ${moduleInfo[it]!!.version}" }.joinToString("\n")
return loadOrder.filter { moduleInfo[it] != null }.map { "$it ${moduleInfo[it]!!.version}" }.joinToString("\n")
}