From d88f390b9edc9068560109f89100e11fe438a5e5 Mon Sep 17 00:00:00 2001 From: "nielsbreu@gmail.com" Date: Sat, 15 Jun 2013 18:11:27 +0000 Subject: Entity: Added IsTNT Once again I wasn't paying attention.. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1594 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Bindings.h | 2 +- source/Entity.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'source') diff --git a/source/Bindings.h b/source/Bindings.h index 5d041895b..8925e328b 100644 --- a/source/Bindings.h +++ b/source/Bindings.h @@ -1,6 +1,6 @@ /* ** Lua binding: AllToLua -** Generated automatically by tolua++-1.0.92 on 06/13/13 08:12:34. +** Generated automatically by tolua++-1.0.92 on 06/15/13 20:05:14. */ /* Exported function */ 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; -- cgit v1.2.3