mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 22:56:45 +01:00
Fix issue #2464
This commit is contained in:
parent
9718123292
commit
d19b682a55
@ -165,7 +165,8 @@ public class ExperienceConfig extends AutoUpdateConfigLoader {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/* Curve settings */
|
/* Curve settings */
|
||||||
public FormulaType getFormulaType() { return FormulaType.getFormulaType(config.getString("Experience_Formula.Curve")); }
|
public FormulaType getFormulaType() { return FormulaType.getFormulaType(config.getString("Experience_Formula.Curve.DEFAULT")); }
|
||||||
|
public FormulaType getFormulaType(SkillType skill) { return FormulaType.getFormulaType(config.getString("Experience_Formula.Curve." + StringUtils.getCapitalized(skill.toString()))); }
|
||||||
public boolean getCumulativeCurveEnabled() { return config.getBoolean("Experience_Formula.Cumulative_Curve", false); }
|
public boolean getCumulativeCurveEnabled() { return config.getBoolean("Experience_Formula.Cumulative_Curve", false); }
|
||||||
|
|
||||||
/* Curve values */
|
/* Curve values */
|
||||||
|
@ -345,7 +345,7 @@ public class PlayerProfile {
|
|||||||
*/
|
*/
|
||||||
public int getXpToLevel(SkillType skillType) {
|
public int getXpToLevel(SkillType skillType) {
|
||||||
int level = (ExperienceConfig.getInstance().getCumulativeCurveEnabled()) ? UserManager.getPlayer(playerName).getPowerLevel() : skills.get(skillType);
|
int level = (ExperienceConfig.getInstance().getCumulativeCurveEnabled()) ? UserManager.getPlayer(playerName).getPowerLevel() : skills.get(skillType);
|
||||||
FormulaType formulaType = ExperienceConfig.getInstance().getFormulaType();
|
FormulaType formulaType = ExperienceConfig.getInstance().getFormulaType(skillType);
|
||||||
|
|
||||||
return mcMMO.getFormulaManager().getCachedXpToLevel(level, formulaType);
|
return mcMMO.getFormulaManager().getCachedXpToLevel(level, formulaType);
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,21 @@ Experience_Formula:
|
|||||||
# If an invalid value is entered, this will reset to the default setting, which is LINEAR
|
# If an invalid value is entered, this will reset to the default setting, which is LINEAR
|
||||||
# LINEAR: base + (level * multiplier)
|
# LINEAR: base + (level * multiplier)
|
||||||
# EXPONENTIAL: multiplier * level ^ exponent + base
|
# EXPONENTIAL: multiplier * level ^ exponent + base
|
||||||
Curve: LINEAR
|
Curve:
|
||||||
|
Swords: LINEAR
|
||||||
|
Taming: LINEAR
|
||||||
|
Acrobatics: LINEAR
|
||||||
|
Excavation: LINEAR
|
||||||
|
Herbalism: LINEAR
|
||||||
|
Unarmed: LINEAR
|
||||||
|
Woodcutting: LINEAR
|
||||||
|
Mining: LINEAR
|
||||||
|
Archery: LINEAR
|
||||||
|
Axes: LINEAR
|
||||||
|
Repair: LINEAR
|
||||||
|
Fishing: LINEAR
|
||||||
|
Alchemy: LINEAR
|
||||||
|
DEFAULT: LINEAR
|
||||||
|
|
||||||
# If invalid values are entered mcMMO will not start and print an error in the console
|
# If invalid values are entered mcMMO will not start and print an error in the console
|
||||||
Linear_Values:
|
Linear_Values:
|
||||||
|
Loading…
Reference in New Issue
Block a user