Skip to content

Commit

Permalink
Merge pull request #1523 from Dans-Plugins/making-yml-system-default
Browse files Browse the repository at this point in the history
YML Translation System By Default
  • Loading branch information
dmccoystephenson authored Sep 24, 2022
2 parents 47022c3 + b82d8eb commit 1b5b10f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public void handleVersionMismatch() {
getConfig().set("bonusPowerEnabled", true);
}
if (!getConfig().isBoolean("useNewLanguageFile")) {
getConfig().set("useNewLanguageFile", false);
getConfig().set("useNewLanguageFile", true);
}
if (!getConfig().isDouble("powerLostOnDeath")) {
getConfig().set("powerLostOnDeath", 1.0);
Expand Down Expand Up @@ -321,7 +321,7 @@ public void saveConfigDefaults() {
getConfig().set("powerGainedOnKill", 1.0);
getConfig().set("teleportDelay", 3);
getConfig().set("factionless", "FactionLess");
getConfig().set("useNewLanguageFile", false);
getConfig().set("useNewLanguageFile", true);
getConfig().set("secondsBeforeInitialAutosave", 60);
getConfig().set("secondsBetweenAutosaves", 60);
getConfig().options().copyDefaults(true);
Expand Down

0 comments on commit 1b5b10f

Please sign in to comment.