fixed health

By: Tahg <tahgtahv@gmail.com>
This commit is contained in:
CraftBukkit/Spigot 2011-01-17 16:45:20 -05:00
parent 9f88190ab1
commit eeaaea9223

View File

@ -24,15 +24,15 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
}
public int getHealth() {
return entity.ba;
return entity.aZ;
}
public void setHealth(int health) {
if ((health < 0) || (health > 20)) {
throw new IllegalArgumentException("Health must be between 0 and 20");
if ((health < 0) || (health > 200)) {
throw new IllegalArgumentException("Health must be between 0 and 200");
}
entity.ba = health;
entity.aZ = health;
}
@Override