From aebe130299a3c3d14a0d89e68195c303ca120c1b Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 22 Dec 2012 09:39:13 +0000 Subject: Reduced most mobs' constructors to oneliners by passing parameters to superclasses git-svn-id: http://mc-server.googlecode.com/svn/trunk@1095 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Mobs/Bat.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source/Mobs/Bat.h') diff --git a/source/Mobs/Bat.h b/source/Mobs/Bat.h index 91279889f..35c0f99a6 100644 --- a/source/Mobs/Bat.h +++ b/source/Mobs/Bat.h @@ -13,7 +13,10 @@ class cBat : typedef cPassiveMonster super; public: - cBat(void); + cBat(void) : + super("Bat", 65, "mob.bat.hurt", "mob.bat.death") + { + } CLASS_PROTODEF(cBat); } ; -- cgit v1.2.3