diff --git a/src/data/moves/move.ts b/src/data/moves/move.ts index 37e532b047b..194e1915bec 100644 --- a/src/data/moves/move.ts +++ b/src/data/moves/move.ts @@ -10752,7 +10752,7 @@ export function initMoves() { .condition( () => { const weather = globalScene.arena.weather; - if (isNullOrUndefined(weather) || weather.isEffectSuppressed()) { + if (weather == null || weather.isEffectSuppressed()) { return false; } return weather.weatherType === WeatherType.HAIL || weather.weatherType === WeatherType.SNOW;