Change XP processing to use a single function.

This commit is contained in:
GJ
2012-06-04 09:30:51 -04:00
parent 2a27048174
commit 1e58c32a5f
12 changed files with 46 additions and 43 deletions

View File

@ -39,7 +39,6 @@ public class GainXp implements Runnable {
damage += health;
}
PP.addXP(player, skillType, (int) (damage * baseXp));
Skills.xpCheckSkill(skillType, player);
Skills.xpProcessing(player, PP, skillType, (int) (damage * baseXp));
}
}