mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-03-21 17:50:29 -05:00
Fix linter warning in battle-tooltips.ts (#1540)
This commit is contained in:
parent
b877b2dfe0
commit
44d347cd75
|
|
@ -1721,7 +1721,11 @@ class BattleTooltips {
|
|||
value.modify(0.5, 'Misty Terrain + grounded target');
|
||||
}
|
||||
}
|
||||
if (move.id === 'expandingforce' && this.battle.hasPseudoWeather('Psychic Terrain') && pokemon.isGrounded(serverPokemon)) {
|
||||
if (
|
||||
move.id === 'expandingforce' &&
|
||||
this.battle.hasPseudoWeather('Psychic Terrain') &&
|
||||
pokemon.isGrounded(serverPokemon)
|
||||
) {
|
||||
value.modify(1.5, 'Expanding Force + Psychic Terrain boost');
|
||||
}
|
||||
if (move.id === 'mistyexplosion' && this.battle.hasPseudoWeather('Misty Terrain')) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user