Classic mode setting is now UseOldLevelScaling to lessen confusion

This commit is contained in:
nossr50
2019-01-11 01:52:16 -08:00
parent f828084246
commit 7c024314b7
5 changed files with 7 additions and 5 deletions

View File

@ -246,7 +246,7 @@ public class Config extends AutoUpdateConfigLoader {
/* General Settings */
//Classic mode will default the value to true if the config file doesn't contain the entry (server is from a previous mcMMO install)
public boolean getClassicMode() { return config.getBoolean("General.Classic_Mode", true); }
public boolean getUseOldLevelScaling() { return config.getBoolean("General.UseOldLevelScaling", true); }
//XP needed to level is multiplied by this when using classic mode
public int getClassicModeXPFormulaFactor() { return config.getInt("General.Skill_Scaling.Classic_XP_Formula_Factor", 1); }