Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 21:10:17 +01:00
Report valid health when getting Entity health. Fixes BUKKIT-3210
Dieser Commit ist enthalten in:
Ursprung
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) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren