From e1b961260145ea808cf51384a12f4b7892174f91 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 1 Mar 2018 00:30:26 -0500 Subject: [PATCH] v0.6.3b: added a safety check to the challenges button --- .../shatteredpixel/shatteredpixeldungeon/scenes/StartScene.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/StartScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/StartScene.java index 76e60c1ab..91ef7854d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/StartScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/StartScene.java @@ -518,6 +518,7 @@ public class StartScene extends PixelScene { } ); } else { StartScene.this.add( new WndMessage( Messages.get(StartScene.class, "need_to_win") ) ); + SPDSettings.challenges(0); } }