From 3b142a07d43dfd36bba308c11a6d5b00800f8bde Mon Sep 17 00:00:00 2001 From: frutescens Date: Tue, 5 Nov 2024 11:51:01 -0800 Subject: [PATCH] bahhh --- 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 0e8fa9de88d..26aa32c06f2 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -2842,7 +2842,7 @@ export class GrudgeTag extends BattlerTag { if (sourcePokemon.isActive()) { const lastMove = pokemon.turnData.attacksReceived[0]; const lastMoveData = sourcePokemon.getMoveset().find(m => m?.moveId === lastMove.move); - if (lastMoveData) { + if (lastMoveData && lastMove.move !== Moves.STRUGGLE) { lastMoveData.ppUsed = lastMoveData.getMovePp(); pokemon.scene.queueMessage(i18next.t("battlerTags:grudgeOnLapse", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), moveName: lastMoveData.getName() })); }