Changed experience storage from integers to floats

This will make sure no experience is lost when the server has high
skill modifiers configured, or when low amounts of experience are being
shared.
This commit is contained in:
TfT_02
2013-04-24 19:30:46 +02:00
committed by GJ
parent eea5784527
commit 17a0382283
9 changed files with 126 additions and 64 deletions

View File

@ -38,7 +38,7 @@ public abstract class SkillManager {
return activationChance;
}
public void applyXpGain(int xp) {
public void applyXpGain(float xp) {
mcMMOPlayer.beginXpGain(skill, xp);
}
}