Skip to content

Commit 90af145

Browse files
committed
change default boolean value to true if not found
1 parent 931531b commit 90af145

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/me/refracdevelopment/simplegems/managers/configuration

1 file changed

+1
-1
lines changed

src/main/java/me/refracdevelopment/simplegems/managers/configuration/ConfigFile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public double getDouble(String path) {
6868

6969
@Override
7070
public boolean getBoolean(String path) {
71-
return super.getBoolean(path, false);
71+
return super.getBoolean(path, true);
7272
}
7373

7474
public String getString(String path, boolean check) {

0 commit comments

Comments
 (0)