Levels now start at 1 (configurable advanced.yml)

This commit is contained in:
nossr50
2019-01-18 13:10:45 -08:00
parent 9ae58fd2f7
commit 43da10a855
6 changed files with 39 additions and 28 deletions

View File

@ -675,6 +675,7 @@ public class AdvancedConfig extends AutoUpdateConfigLoader {
protected void loadKeys() {}
/* GENERAL */
public int getStartingLevel() { return config.getInt("Skills.General.StartingLevel", 1); }
public int getAbilityLengthStandard() { return config.getInt("Skills.General.Ability.Length.Standard.IncreaseLevel", 5); }
public int getAbilityLengthRetro() { return config.getInt("Skills.General.Ability.Length.RetroMode.IncreaseLevel", 50); }
public int getEnchantBuff() { return config.getInt("Skills.General.Ability.EnchantBuff", 5); }