Consistent ordering of settings with default config.

master
blablubbabc 2020-11-23 14:57:40 +01:00
parent adeeaea613
commit a325aaabe1
1 changed files with 6 additions and 6 deletions

View File

@ -87,7 +87,7 @@ public class Settings {
private AsyncSettings() {
this.debug = Settings.debug;
this.debugOptions = new ArrayList<String>(Settings.debugOptions);
this.debugOptions = new ArrayList<>(Settings.debugOptions);
this.fileEncoding = Settings.fileEncoding;
}
}
@ -105,6 +105,11 @@ public class Settings {
public static List<String> debugOptions = new ArrayList<>(0);
public static boolean enableMetrics = true;
/*
* Messages
*/
public static String language = "en-default";
/*
* Shopkeeper Data
*/
@ -304,11 +309,6 @@ public class Settings {
public static int highCurrencyValue = 9;
public static int highCurrencyMinCost = 20;
/*
* Messages
*/
public static String language = "en-default";
// /////
// These String / String list settings are exempt from color conversion: