diff --git a/Source/HarmonyPatches.cs b/Source/HarmonyPatches.cs index c82e55d..8b8cdf8 100644 --- a/Source/HarmonyPatches.cs +++ b/Source/HarmonyPatches.cs @@ -351,7 +351,7 @@ public static class Patch_Game_LoadGame [HarmonyPostfix] public static void Postfix(Game __instance) { - List listOfThing = __instance.CurrentMap.listerThings.AllThings.Where(x => x.def.defName == "RotR_ISR2G").ToList(); + List listOfThing = __instance.CurrentMap.listerThings.AllThings.Where(x => x.def.defName.Contains("ISR2G")).ToList(); RoadsOfTheRim.DebugLog("Game loaded - Found "+listOfThing.Count()+" ISR2G"); foreach (Thing t in listOfThing) { diff --git a/v1.1/Assemblies/RoadsOfTheRim.dll b/v1.1/Assemblies/RoadsOfTheRim.dll index 9c1c706..0ef8ada 100644 Binary files a/v1.1/Assemblies/RoadsOfTheRim.dll and b/v1.1/Assemblies/RoadsOfTheRim.dll differ