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

This commit is contained in:
feildmaster 2012-12-23 07:16:59 -06:00
parent ed6aab8200
commit 4e1793f363

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) {