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 5656a7877..6fbb491fc 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 @@ -426,7 +426,8 @@ public class CursedWand { //random transmogrification case 3: - if (origin == null){ + //skips this effect if there is no item to transmogrify + if (origin == null || !Dungeon.hero.belongings.contains(origin)){ cursedZap(origin, user, bolt, afterZap); return; }