summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Bat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Bat.cpp')
-rw-r--r--source/Mobs/Bat.cpp23
1 files changed, 3 insertions, 20 deletions
diff --git a/source/Mobs/Bat.cpp b/source/Mobs/Bat.cpp
index 4cc74ec2b..24ce88184 100644
--- a/source/Mobs/Bat.cpp
+++ b/source/Mobs/Bat.cpp
@@ -7,7 +7,7 @@
-cBat::cBat()
+cBat::cBat(void)
{
m_MobType = 65;
GetMonsterConfig("Bat");
@@ -17,29 +17,12 @@ cBat::cBat()
-cBat::~cBat()
+bool cBat::IsA(const char * a_EntityType)
{
+ return ((strcmp(a_EntityType, "cBat") == 0) || super::IsA(a_EntityType));
}
-bool cBat::IsA( const char* a_EntityType )
-{
- if( strcmp( a_EntityType, "cBat" ) == 0 ) return true;
- return cMonster::IsA( a_EntityType );
-}
-
-
-
-
-
-void cBat::KilledBy( cEntity* a_Killer )
-{
- cMonster::KilledBy( a_Killer );
-}
-
-
-
-