diff options
Diffstat (limited to 'source/Entity.h')
-rw-r--r-- | source/Entity.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/Entity.h b/source/Entity.h index b1bcbfd7f..49a7a5b0d 100644 --- a/source/Entity.h +++ b/source/Entity.h @@ -91,6 +91,7 @@ public: bool IsPickup (void) const { return (m_EntityType == etPickup); } bool IsMob (void) const { return (m_EntityType == etMob); } bool IsMinecart(void) const { return (m_EntityType == etMinecart); } + bool IsTNT (void) const { return (m_EntityType == etTNT); } /// Returns true if the entity is of the specified class or a subclass (cPawn's IsA("cEntity") returns true) virtual bool IsA(const char * a_ClassName) const; |