Set health before entity death.

This commit is contained in:
Lukas Hennig 2017-04-24 18:20:14 +02:00 committed by md_5
parent fbb47e8383
commit 2b6c9f40ae

View File

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