Merge pull request #2799 from DorCoMaNdO/patch-3

Use getItemInMainHand()
This commit is contained in:
t00thpick1
2016-03-11 22:09:08 -05:00
26 changed files with 145 additions and 67 deletions

View File

@ -533,6 +533,6 @@ public class Config extends AutoUpdateConfigLoader {
/* PVP & PVE Settings */
public boolean getPVPEnabled(SkillType skill) { return config.getBoolean("Skills." + StringUtils.getCapitalized(skill.toString()) + ".Enabled_For_PVP", true); }
public boolean getPVEEnabled(SkillType skill) { return config.getBoolean("Skills." + StringUtils.getCapitalized(skill.toString()) + ".Enabled_For_PVE", true); }
public float getMasterVolume() { return (float) config.getDouble("Sounds.MasterVolume", 1.0); }
}