From 9020c353476580047f6836a196d97587d08d011d Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 24 Jul 2015 15:23:07 -0400 Subject: [PATCH] v0.3.1: default number of quickslots is now 4. --- .../shatteredpixeldungeon/ShatteredPixelDungeon.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java index d27473cae..a378bd37e 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java @@ -335,7 +335,7 @@ public class ShatteredPixelDungeon extends Game { public static void quickSlots( int value ){ Preferences.INSTANCE.put( Preferences.KEY_QUICKSLOTS, value ); } - public static int quickSlots(){ return Preferences.INSTANCE.getInt( Preferences.KEY_QUICKSLOTS, 1); } + public static int quickSlots(){ return Preferences.INSTANCE.getInt( Preferences.KEY_QUICKSLOTS, 4); } public static void flippedUI( boolean value) { Preferences.INSTANCE.put(Preferences.KEY_FLIPPEDUI, value ); }