From cae4342d9826299660bf58389ee078cdb2dd4934 Mon Sep 17 00:00:00 2001 From: innerthunder Date: Sun, 17 Nov 2024 15:01:03 -0800 Subject: [PATCH] Reverted Ice Face/Disguise changes --- src/data/ability.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/ability.ts b/src/data/ability.ts index 768426d1cd8..0ba188f861c 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -4663,7 +4663,7 @@ export class FormBlockDamageAbAttr extends ReceivedMoveDamageMultiplierAbAttr { * @returns `true` if the immunity was applied. */ override applyPreDefend(pokemon: Pokemon, _passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, _cancelled: Utils.BooleanHolder, args: any[]): boolean { - if (this.condition(pokemon, attacker, move)) { + if (this.condition(pokemon, attacker, move) && !move.hitsSubstitute(attacker, pokemon)) { if (!simulated) { (args[0] as Utils.NumberHolder).value = this.multiplier; pokemon.removeTag(this.tagType);