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;