Fix incorrect operator used for ability weather damage formula

This commit is contained in:
Flashfyre 2023-11-28 08:15:50 -05:00
parent 3e8b047cbd
commit 1040b2f1d7
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ export class PostWeatherLapseDamageAbAttr extends PostWeatherLapseAbAttr {
const scene = pokemon.scene;
scene.queueMessage(getPokemonMessage(pokemon, ` is hurt\nby its ${pokemon.getAbility()}!`));
scene.unshiftPhase(new DamagePhase(pokemon.scene, pokemon.getBattlerIndex(), HitResult.OTHER));
pokemon.damage(Math.ceil(pokemon.getMaxHp() * (16 / this.damageFactor)));
pokemon.damage(Math.ceil(pokemon.getMaxHp() / (16 / this.damageFactor)));
return true;
}