From 221ff8ed47480ecdd4828d3b1f3c193d35d1cdbf Mon Sep 17 00:00:00 2001 From: Eduardo Quezada Date: Mon, 16 Jun 2025 16:11:00 -0400 Subject: [PATCH] Removed redundant Damp check (#7134) --- src/battle_script_commands.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index 9091796fce..a1a0814253 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -6977,12 +6977,9 @@ static void Cmd_moveend(void) break; case EFFECT_EXPLOSION: case EFFECT_MISTY_EXPLOSION: - if (!IsAbilityOnField(ABILITY_DAMP)) - { - gBattleStruct->moveDamage[gBattlerAttacker] = 0; - BattleScriptCall(BattleScript_FaintAttackerForExplosion); - effect = TRUE; - } + gBattleStruct->moveDamage[gBattlerAttacker] = 0; + BattleScriptCall(BattleScript_FaintAttackerForExplosion); + effect = TRUE; break; case EFFECT_MAX_HP_50_RECOIL: case EFFECT_MIND_BLOWN: