diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfFireblast.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfFireblast.java index 4a653b20d..f91bd8d66 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfFireblast.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfFireblast.java @@ -78,9 +78,8 @@ public class WandOfFireblast extends DamageWand { Char ch = Actor.findChar( cell ); if (ch != null) { - int damage = damageRoll(); - - ch.damage(damage, this); + processSoulMark(ch, chargesPerCast()); + ch.damage(damageRoll(), this); Buff.affect( ch, Burning.class ).reignite( ch ); switch(chargesPerCast()){ case 1: