implementation of Entity.isDead

This commit is contained in:
afforess 2011-04-02 01:08:57 -04:00 committed by Erik Broes
parent adb13029bc
commit a0b2a26c3a

View File

@ -147,6 +147,10 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
entity.dead = true;
}
public boolean isDead() {
return entity.dead;
}
public Entity getHandle() {
return entity;
}