diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Burning.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Burning.java index a627b1a34..acaefb329 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Burning.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Burning.java @@ -72,13 +72,9 @@ public class Burning extends Buff implements Hero.Doom { if (target.isAlive()) { - if (target instanceof Hero) { - Buff.prolong( target, Light.class, TICK * 1.01f ); - } - target.damage( Random.Int( 1, 5 ), this ); Buff.detach( target, Chill.class); - + if (target instanceof Hero) { Hero hero = (Hero)target;