diff --git a/src/phases.ts b/src/phases.ts index f44b4bcaa0b..d3ebc39fa5a 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -2588,7 +2588,8 @@ export class MoveEffectPhase extends PokemonPhase { } hitCheck(target: Pokemon): boolean { - if (this.move.getMove().moveTarget === MoveTarget.USER) + // Moves targeting the user and entry hazards can't miss + if ([MoveTarget.USER, MoveTarget.ENEMY_SIDE].includes(this.move.getMove().moveTarget)) return true; const user = this.getUserPokemon();