Report valid health when getting Entity health. Fixes BUKKIT-3210

By: feildmaster <admin@feildmaster.com>
This commit is contained in:
CraftBukkit/Spigot 2012-12-23 07:16:59 -06:00
parent eeded7f6fd
commit f1cc082ee0

View File

@ -59,7 +59,7 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
}
public int getHealth() {
return getHandle().getHealth();
return Math.min(Math.max(0, getHandle().getHealth()), getMaxHealth());
}
public void setHealth(int health) {