Setting exp shouldn't add, it should set

This commit is contained in:
Dinnerbone 2011-09-15 06:27:55 +01:00
parent 8b08696177
commit 965b185c5c

View File

@ -402,7 +402,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
}
public void setExperience(int exp) {
getHandle().d(exp);
getHandle().d(exp - getExperience());
}
public int getLevel() {