13
0
geforkt von Mirrors/Paper

Set health before entity death.

Dieser Commit ist enthalten in:
Lukas Hennig 2017-04-24 18:20:14 +02:00 committet von md_5
Ursprung fbb47e8383
Commit 2b6c9f40ae

Datei anzeigen

@ -99,11 +99,11 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
throw new IllegalArgumentException("Health must be between 0 and " + getMaxHealth() + "(" + health + ")");
}
getHandle().setHealth((float) health);
if (health == 0) {
getHandle().die(DamageSource.GENERIC);
}
getHandle().setHealth((float) health);
}
public double getMaxHealth() {