From 98f72e932482479c0a89ec2b01b244fb5e0bb36f Mon Sep 17 00:00:00 2001 From: Zach Day Date: Sun, 16 Jun 2024 17:49:21 -0400 Subject: [PATCH] Update move history entry to FAIL when prevented by Damp --- src/phases.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/phases.ts b/src/phases.ts index ddd57018c42..55619a5c869 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -3054,6 +3054,8 @@ export class MoveEffectPhase extends PokemonPhase { applyAbAttrs(FieldPreventMovesAbAttr, other, prevented, move, user as Pokemon); } if (prevented.value) { + // Just bail out of the move if it got prevented. No need to manually show message; the Attr handles that. + moveHistoryEntry.result = MoveResult.FAIL; return this.end(); }