Skip to content

Commit

Permalink
Made the new YML system get used by default, rather than the old TSV …
Browse files Browse the repository at this point in the history
…system.
  • Loading branch information
dmccoystephenson committed Sep 24, 2022
1 parent 47022c3 commit b82d8eb
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 b82d8eb

Please sign in to comment.