Fixed a bunch of stuff

* Fixed compilation
* Made it less obvious I COPIED ALL THE CODE from Minecarts
* Fixed alignment spaces to make xoft happy
This commit is contained in:
Tiger Wang
2013-09-08 16:56:16 +01:00
parent c789a8ddf5
commit 50e24fb75f
4 changed files with 7 additions and 5 deletions
+2
View File
@@ -92,6 +92,7 @@ public:
etMonster,
etFallingBlock,
etMinecart,
etBoat,
etTNT,
etProjectile,
@@ -119,6 +120,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 IsBoat (void) const { return (m_EntityType == etBoat); }
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)