diff --git a/play.pokemonshowdown.com/src/battle-tooltips.ts b/play.pokemonshowdown.com/src/battle-tooltips.ts index 78c8aa34a..e120936d5 100644 --- a/play.pokemonshowdown.com/src/battle-tooltips.ts +++ b/play.pokemonshowdown.com/src/battle-tooltips.ts @@ -1598,13 +1598,8 @@ export class BattleTooltips { let maxNatureMult = 1.1; if (pokemon.nature) { let natureVals = BattleNatures[pokemon.nature]; - if (natureVals.minus === 'spe') { - minNatureMult = 0.9; - maxNatureMult = 0.9; - } else if (natureVals.plus === 'spe') { - minNatureMult = 1.1; - maxNatureMult = 1.1; - } + if (natureVals.minus === 'spe') maxNatureMult = 0.9; + if (natureVals.plus === 'spe') minNatureMult = 1.1; } let min;