From ba50b4b0934ca3a17829d56041d2d62823b82f3b Mon Sep 17 00:00:00 2001 From: Zach Day Date: Fri, 9 Aug 2024 21:20:43 -0400 Subject: [PATCH] Consistent access modifiers across Disable tags --- src/data/battler-tags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 2932d6c79ec..cef4cbdb01a 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -104,7 +104,7 @@ export abstract class DisablingBattlerTag extends BattlerTag { super(tagType, [ BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.TURN_END ], turnCount, sourceMove, sourceId); } - lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { + override lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean { if (lapseType === BattlerTagLapseType.PRE_MOVE) { // Cancel the affected pokemon's selected move const phase = pokemon.scene.getCurrentPhase() as MovePhase;