Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-18 04:20:08 +01:00
Set health before entity death.
Dieser Commit ist enthalten in:
Ursprung
fbb47e8383
Commit
2b6c9f40ae
@ -99,11 +99,11 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
|||||||
throw new IllegalArgumentException("Health must be between 0 and " + getMaxHealth() + "(" + health + ")");
|
throw new IllegalArgumentException("Health must be between 0 and " + getMaxHealth() + "(" + health + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getHandle().setHealth((float) health);
|
||||||
|
|
||||||
if (health == 0) {
|
if (health == 0) {
|
||||||
getHandle().die(DamageSource.GENERIC);
|
getHandle().die(DamageSource.GENERIC);
|
||||||
}
|
}
|
||||||
|
|
||||||
getHandle().setHealth((float) health);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getMaxHealth() {
|
public double getMaxHealth() {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren