diff --git a/src/phases/pokemon-heal-phase.ts b/src/phases/pokemon-heal-phase.ts index b461d8d2ca8..5c724860d3b 100644 --- a/src/phases/pokemon-heal-phase.ts +++ b/src/phases/pokemon-heal-phase.ts @@ -197,6 +197,6 @@ export class PokemonHealPhase extends CommonAnimPhase { // Liquid Ooze damage (being negative) remains uncapped as normal. const healMulti = new NumberHolder(1); globalScene.applyModifiers(HealingBoosterModifier, this.player, healMulti); - return toDmgValue(Math.min(this.hpHealed * healMulti.value, this.getPokemon().getMaxHp() - +this.preventFullHeal)); + return Math.min(Math.floor(this.hpHealed * healMulti.value), this.getPokemon().getMaxHp() - +this.preventFullHeal); } }