Changed config node name for the skill experience modifiers from "Multiplier" to "Modifier"

Because the name was confusing.
This will break config settings, check your config.yml if you have
changed the skill experience modifiers.
This commit is contained in:
TfT_02
2013-03-23 15:18:21 +01:00
parent fa99ebb391
commit 596f2fa78a
3 changed files with 7 additions and 2 deletions

View File

@ -253,5 +253,5 @@ public class Config extends AutoUpdateConfigLoader {
/* XP Formula Multiplier */
public int getFormulaMultiplierCurve() { return config.getInt("Experience.Formula.Curve_Modifier", 20); }
public double getForumulaMultiplier(SkillType skill) { return config.getDouble("Experience.Formula.Multiplier." + StringUtils.getCapitalized(skill.toString())); }
public double getForumulaMultiplier(SkillType skill) { return config.getDouble("Experience.Formula.Modifier." + StringUtils.getCapitalized(skill.toString())); }
}

View File

@ -238,6 +238,8 @@ Experience:
Gains:
Mobspawners:
Enabled: false
# Experience gained in every skill will get multiplied by this value. 1.0 by default, 2.0 means two times as much
Multiplier:
PVP: 1.0
Global: 1.0
@ -245,7 +247,9 @@ Experience:
Rewards: true
Formula:
Curve_Modifier: 20
Multiplier:
# Experience gained will get divided by these values. 1.0 by default, 2.0 means two times lower
Modifier:
Swords: 1.0
Taming: 1.0
Acrobatics: 1.0