diff options
author | archshift <admin@archshift.com> | 2014-06-12 01:21:47 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-06-17 20:39:21 +0200 |
commit | 71b4c4949087860ab9962d6545a0ad2eb9c0ee5a (patch) | |
tree | 95de954af7f5b4a921c36172f2fd550cfc0545b6 /src/Entities/Entity.h | |
parent | Added wither damage type, wither entity effect. (diff) | |
download | cuberite-71b4c4949087860ab9962d6545a0ad2eb9c0ee5a.tar cuberite-71b4c4949087860ab9962d6545a0ad2eb9c0ee5a.tar.gz cuberite-71b4c4949087860ab9962d6545a0ad2eb9c0ee5a.tar.bz2 cuberite-71b4c4949087860ab9962d6545a0ad2eb9c0ee5a.tar.lz cuberite-71b4c4949087860ab9962d6545a0ad2eb9c0ee5a.tar.xz cuberite-71b4c4949087860ab9962d6545a0ad2eb9c0ee5a.tar.zst cuberite-71b4c4949087860ab9962d6545a0ad2eb9c0ee5a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/Entity.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h index b8f1f4c1c..b5d5cc34c 100644 --- a/src/Entities/Entity.h +++ b/src/Entities/Entity.h @@ -158,6 +158,7 @@ public: bool IsPlayer (void) const { return (m_EntityType == etPlayer); } bool IsPickup (void) const { return (m_EntityType == etPickup); } bool IsMob (void) const { return (m_EntityType == etMonster); } + bool IsPawn (void) const { return (IsMob() || IsPlayer()); } bool IsFallingBlock(void) const { return (m_EntityType == etFallingBlock); } bool IsMinecart (void) const { return (m_EntityType == etMinecart); } bool IsBoat (void) const { return (m_EntityType == etBoat); } |