diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-09-13 15:53:03 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-09-13 15:53:03 -0600 |
commit | 58ea62e82d78924930b59d75890fe480c556498a (patch) | |
tree | 14ee7f48ec72059d621af7709c89dff53cc923e7 /src/net/brysonsteck/Resurrection | |
parent | 19bdabea9eb590147160a020ca6614fffa85e9c4 (diff) | |
download | resurrection-58ea62e82d78924930b59d75890fe480c556498a.tar resurrection-58ea62e82d78924930b59d75890fe480c556498a.tar.gz resurrection-58ea62e82d78924930b59d75890fe480c556498a.tar.bz2 |
was not returning correct value
Diffstat (limited to 'src/net/brysonsteck/Resurrection')
-rw-r--r-- | src/net/brysonsteck/Resurrection/startup/ParseSettings.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/brysonsteck/Resurrection/startup/ParseSettings.java b/src/net/brysonsteck/Resurrection/startup/ParseSettings.java index 6dc941e..d76b657 100644 --- a/src/net/brysonsteck/Resurrection/startup/ParseSettings.java +++ b/src/net/brysonsteck/Resurrection/startup/ParseSettings.java @@ -105,5 +105,5 @@ public class ParseSettings { return settings.get(setting); } - public boolean isSettingsComplete() { return settingsComplete; } + public boolean isSettingsComplete() { return settingsComplete && valuesComplete; } } |