From 131873322fc67817a7933c0f4bb6089d97972b3c Mon Sep 17 00:00:00 2001 From: vitellaryjr <43586575+vitellaryjr@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:01:12 -0700 Subject: [PATCH] actually fix timestop persisting thru level exit --- Code/VitModule.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Code/VitModule.cs b/Code/VitModule.cs index 41ce6aa..4d64f0a 100644 --- a/Code/VitModule.cs +++ b/Code/VitModule.cs @@ -617,6 +617,7 @@ private void Level_End(On.Celeste.Level.orig_End orig, Level self) TimeCrystal.stopTimer = 0f; TimeCrystal.stopStage = 0; timeStopScaleTimer = 0f; + useTimeStopDelta = false; CoyoteBounceTrigger.CoyoteTriggerInside = null; orig(self); }