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(); }