Ability lengths now have a default skill cap at which they stop increasing in length, you can change this in advanced.yml

This commit is contained in:
nossr50
2019-01-21 05:57:06 -08:00
parent f8b7d5e10d
commit 6c77017658
6 changed files with 11 additions and 3 deletions

View File

@ -668,6 +668,8 @@ public class AdvancedConfig extends AutoUpdateConfigLoader {
/* GENERAL */
public int getStartingLevel() { return config.getInt("Skills.General.StartingLevel", 1); }
public int getAbilityLengthCapStandard() { return config.getInt("Skills.General.Ability.Length.Standard.Cap", 50); }
public int getAbilityLengthCapRetro() { return config.getInt("Skills.General.Ability.Length.RetroMode.Cap", 500); }
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); }