Report valid health when getting Entity health. Fixes BUKKIT-3210
This commit is contained in:
parent
ed6aab8200
commit
4e1793f363
@ -59,7 +59,7 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getHealth() {
|
public int getHealth() {
|
||||||
return getHandle().getHealth();
|
return Math.min(Math.max(0, getHandle().getHealth()), getMaxHealth());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setHealth(int health) {
|
public void setHealth(int health) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user