diff --git a/JotunnLib/DebugUtils/DebugHelper.cs b/JotunnLib/DebugUtils/DebugHelper.cs index 44339b483..d23e80fdd 100644 --- a/JotunnLib/DebugUtils/DebugHelper.cs +++ b/JotunnLib/DebugUtils/DebugHelper.cs @@ -46,9 +46,6 @@ private static class Patches [HarmonyPatch(typeof(ZoneSystem), nameof(ZoneSystem.SpawnLocation)), HarmonyPrefix] private static void ZoneSystem_SpawnLocation(ZoneSystem.ZoneLocation location, ZoneSystem.SpawnMode mode) => instance.ZoneSystem_SpawnLocation(location, mode); - [HarmonyPatch(typeof(Player), nameof(Player.OnSpawned)), HarmonyPrefix] - private static void Player_OnSpawned_Prefix(Player __instance) => __instance.m_firstSpawn = false; - [HarmonyPatch(typeof(Player), nameof(Player.OnSpawned)), HarmonyPostfix] private static void Player_OnSpawned_Postfix() => instance.Player_OnSpawned_Postfix(); }