diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java index 244771ca9..406054fdf 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java @@ -244,6 +244,9 @@ public class CursedWand { //Bomb explosion case 2: new Bomb().explode(targetPos); + if (user == Dungeon.hero && !user.isAlive()){ + Badges.validateDeathFromFriendlyMagic(); + } tryForWandProc(Actor.findChar(targetPos), origin); return true;