From e6ccd78e00cdb9e8199394f3b5cf146ddd557ed3 Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Tue, 20 May 2025 14:41:10 -0400 Subject: [PATCH] Update battler-tags.ts --- src/data/battler-tags.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 8fe27a99f61..298673d6e4a 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -308,13 +308,14 @@ export class DisabledTag extends MoveRestrictionBattlerTag { * and showing a message. */ override onAdd(pokemon: Pokemon): void { - // Disable fails against struggle or an empty move history, but we still need to check for - // Cursed Body + // Disable fails against struggle or an empty move history + // TODO: Confirm if this is redundant given Disable/Cursed Body's disable conditions const move = pokemon.getLastNonVirtualMove(); if (isNullOrUndefined(move) || move.move === Moves.STRUGGLE) { return; } + super.onAdd(pokemon); this.moveId = move.move; globalScene.queueMessage(