Fix linter warning in battle-tooltips.ts (#1540)

This commit is contained in:
Annika 2020-06-29 19:20:52 -07:00 committed by GitHub
parent b877b2dfe0
commit 44d347cd75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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')) {