From 93525b5803cf0891c709ada4210b5c03cd79278b Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Fri, 1 Aug 2025 13:38:43 -0600 Subject: [PATCH] [Bug] [Beta] Remove setting currentPhase to null in clearAllPhases (#6193) Remove setting currentPhase to null in clearAllPhases --- src/phase-manager.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/phase-manager.ts b/src/phase-manager.ts index 850f0c564ea..aa01a0ffc10 100644 --- a/src/phase-manager.ts +++ b/src/phase-manager.ts @@ -322,7 +322,6 @@ export class PhaseManager { queue.splice(0, queue.length); } this.dynamicPhaseQueues.forEach(queue => queue.clear()); - this.currentPhase = null; this.standbyPhase = null; this.clearPhaseQueueSplice(); }