From f25e7d441c2f43f0a4b5555f0c4fbeab5421396b Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Fri, 6 Jun 2025 11:05:24 -0400 Subject: [PATCH] Fixed steadfast interaction --- src/data/battler-tags.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index baf3e93f73e..fb5db3c2bb2 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -652,12 +652,6 @@ export class FlinchedTag extends BattlerTag { super(BattlerTagType.FLINCHED, [BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.TURN_END], 1, sourceMove); } - onAdd(pokemon: Pokemon): void { - super.onAdd(pokemon); - - applyAbAttrs(FlinchEffectAbAttr, pokemon, null); - } - /** * Cancels all subsequent moves used by this tag's Pokemon this turn. * @param pokemon - The {@linkcode Pokemon} with this tag. @@ -672,6 +666,7 @@ export class FlinchedTag extends BattlerTag { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), }), ); + applyAbAttrs(FlinchEffectAbAttr, pokemon, null); return true; }