Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
Fix config not initializing without ModMenu
Browse files Browse the repository at this point in the history
  • Loading branch information
doctor4t committed Dec 18, 2020
1 parent f48d198 commit 9f8aa2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/ladysnake/illuminations/client/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ public static void load() {
}
} else { // if no illuminations.properties, load default values
// define default properties
config.setProperty("eyes-in-the-dark", EyesInTheDark.ENABLE.toString());
config.setProperty("density", "100");
config.setProperty("auto-update", "true");
config.setProperty("firefly-white-alpha", "100");
setEyesInTheDark(EyesInTheDark.ENABLE);
setDensity(100);
setAutoUpdate(true);
setFireflyWhiteAlpha(100);
}

try {
Expand Down

0 comments on commit 9f8aa2f

Please sign in to comment.