diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index d3be76bf61..f12583f674 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -1264,7 +1264,8 @@ static void atk01_accuracycheck(void) else gBattleCommunication[6] = 0; - CalcTypeEffectivenessMultiplier(move, type, gBattlerAttacker, gBattlerTarget, TRUE); + if (gBattleMoves[move].power) + CalcTypeEffectivenessMultiplier(move, type, gBattlerAttacker, gBattlerTarget, TRUE); } JumpIfMoveFailed(7, move); }