From 7f182cac19e6285b0e2331077e38bdcadd016188 Mon Sep 17 00:00:00 2001 From: MhaWay Date: Fri, 15 May 2026 10:35:59 +0200 Subject: [PATCH] Fix bootstrap world map rotation --- .../Patches/BootstrapStartedNewGamePatch.cs | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Source/Client/Patches/BootstrapStartedNewGamePatch.cs diff --git a/Source/Client/Patches/BootstrapStartedNewGamePatch.cs b/Source/Client/Patches/BootstrapStartedNewGamePatch.cs deleted file mode 100644 index 1434a71d..00000000 --- a/Source/Client/Patches/BootstrapStartedNewGamePatch.cs +++ /dev/null @@ -1,18 +0,0 @@ -using HarmonyLib; -using Verse; - -namespace Multiplayer.Client; - -[HarmonyPatch(typeof(GameComponentUtility), nameof(GameComponentUtility.StartedNewGame))] -static class BootstrapStartedNewGamePatch -{ - static void Postfix() - { - var window = BootstrapConfiguratorWindow.Instance; - if (window == null) - return; - - BootstrapConfiguratorWindow.AwaitingBootstrapMapInit = true; - OnMainThread.Enqueue(window.OnBootstrapMapInitialized); - } -} \ No newline at end of file