Adds the missing taxAccounts option

This commit is contained in:
2023-04-19 19:00:02 +02:00
parent 2074904aef
commit 6737a4f789
7 changed files with 68 additions and 22 deletions

View File

@@ -364,7 +364,8 @@ public final class StargateConfig {
FileConfiguration newConfig = Stargate.getInstance().getConfig();
boolean isMigrating = false;
if (newConfig.getString("lang") != null || newConfig.getString("economy.freeGatesGreen") != null) {
if (newConfig.getString("lang") != null || newConfig.getString("economy.freeGatesGreen") != null ||
newConfig.getString("economy.taxAccount") == null) {
migrateConfig(newConfig);
isMigrating = true;
}