diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java index 1f1dacd0a..8f6c1f185 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java @@ -466,7 +466,7 @@ public abstract class Char extends Actor { } for (ChampionEnemy buff : buffs(ChampionEnemy.class)){ - dmg *= buff.damageTakenFactor(); + dmg = (int) Math.ceil(dmg * buff.damageTakenFactor()); } if (!(src instanceof LifeLink) && buff(LifeLink.class) != null){