From d6d2870f02b3fa1f341c302c59e29fe44ea644a8 Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Sun, 21 Sep 2025 10:55:20 -0500 Subject: [PATCH] Drop readonly on timingModifier --- src/phases/move-phase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases/move-phase.ts b/src/phases/move-phase.ts index 1ce66e7717a..04e4d68f3b2 100644 --- a/src/phases/move-phase.ts +++ b/src/phases/move-phase.ts @@ -44,7 +44,7 @@ export class MovePhase extends PokemonPhase { protected _targets: BattlerIndex[]; public readonly useMode: MoveUseMode; // Made public for quash /** The timing modifier of the move (used by Quash and to force called moves to the front of their queue) */ - public readonly timingModifier: MovePhaseTimingModifier; + public timingModifier: MovePhaseTimingModifier; /** Whether the current move should fail but still use PP. */ protected failed = false; /** Whether the current move should fail and retain PP. */