Drop readonly on timingModifier

This commit is contained in:
Sirz Benjie 2025-09-21 10:55:20 -05:00
parent f743dc7648
commit d6d2870f02
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -44,7 +44,7 @@ export class MovePhase extends PokemonPhase {
protected _targets: BattlerIndex[]; protected _targets: BattlerIndex[];
public readonly useMode: MoveUseMode; // Made public for quash 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) */ /** 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. */ /** Whether the current move should fail but still use PP. */
protected failed = false; protected failed = false;
/** Whether the current move should fail and retain PP. */ /** Whether the current move should fail and retain PP. */