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 070a5c5c3..35d66a31a 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 @@ -409,10 +409,16 @@ public class CursedWand { } else { GameScene.show( new WndOptions("CURSED WAND ERROR", "this application will now self-destruct", "abort", "retry", "fail") { + @Override - public void hide() { + protected void onSelect(int index) { throw new RuntimeException("critical wand exception"); } + + @Override + public void onBackPressed() { + //do nothing + } } ); }