Functions that start with capital letters are bad.

This commit is contained in:
GJ
2012-06-04 09:08:41 -04:00
parent 2b291954cf
commit 2a27048174
12 changed files with 24 additions and 24 deletions

View File

@ -16,10 +16,10 @@ public class ExperienceAPI {
*/
private void checkXP(Player player, SkillType skillType) {
if (skillType.equals(SkillType.ALL)) {
Skills.XpCheckAll(player);
Skills.xpCheckAll(player);
}
else {
Skills.XpCheckSkill(skillType, player);
Skills.xpCheckSkill(skillType, player);
}
}