From 9839f921d14702f04c8ad9701f1161b1c5d161e6 Mon Sep 17 00:00:00 2001 From: tom-overton Date: Sat, 6 Mar 2021 14:02:35 -0800 Subject: Fix issue where unloadGameOnSuccess was false by default --- src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/com/dabomstew') diff --git a/src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java b/src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java index c9d8506..5675de9 100644 --- a/src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java +++ b/src/com/dabomstew/pkrandom/newgui/NewRandomizerGUI.java @@ -3336,6 +3336,8 @@ public class NewRandomizerGUI { } private void attemptReadConfig() { + // Things that should be true by default should be manually set here + unloadGameOnSuccess = true; File fh = new File(SysConstants.ROOT_PATH + "config.ini"); if (!fh.exists() || !fh.canRead()) { return; -- cgit v1.2.3