From 172e1b7c1bfa8aa0cc9d55625b8a434a29207798 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 13 Feb 2017 23:00:04 -0500 Subject: [PATCH] v0.5.0b: wand of fireblast now procs sould mark as intended --- .../shatteredpixeldungeon/items/wands/WandOfFireblast.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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: