diff --git a/play.pokemonshowdown.com/src/battle-tooltips.ts b/play.pokemonshowdown.com/src/battle-tooltips.ts index b13a4418b..7d2be2a18 100644 --- a/play.pokemonshowdown.com/src/battle-tooltips.ts +++ b/play.pokemonshowdown.com/src/battle-tooltips.ts @@ -1922,10 +1922,10 @@ export class BattleTooltips { if (this.battle.hasPseudoWeather('Psychic Terrain') && target.isGrounded() && priority > 0) { otherFactor = 0; } - if (this.battle.weather === 'primordialsea' && attackType === 'Fire') { + if (this.battle.weather === 'primordialsea' && attackType === 'Fire' && move.category !== 'Status') { otherFactor = 0; } - if (this.battle.weather === 'desolateland' && attackType === 'Water') { + if (this.battle.weather === 'desolateland' && attackType === 'Water' && move.category !== 'Status') { otherFactor = 0; }