13
0
geforkt von Mirrors/Paper

Changed Entity.isDead to be aware of health for living entities

Dieser Commit ist enthalten in:
Nathan Adams 2011-11-25 00:32:44 +00:00
Ursprung 620f101487
Commit 20a0b0a9be

Datei anzeigen

@ -198,7 +198,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
}
public boolean isDead() {
return entity.dead;
return !entity.aj();
}
public Entity getHandle() {