implementation of Entity.isDead

By: afforess <afforess@gmail.com>
This commit is contained in:
CraftBukkit/Spigot
2011-04-02 01:08:57 -04:00
parent f8292a5eb6
commit 7b406bfc1e

View File

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