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/Silverfish.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source/Mobs/Silverfish.h') diff --git a/source/Mobs/Silverfish.h b/source/Mobs/Silverfish.h index 4e4fbd11c..24a9cf38b 100644 --- a/source/Mobs/Silverfish.h +++ b/source/Mobs/Silverfish.h @@ -13,7 +13,10 @@ class cSilverfish : typedef cAggressiveMonster super; public: - cSilverfish(void); + cSilverfish(void) : + super("Silverfish", 60, "mob.silverfish.hit", "mob.silverfish.kill") + { + } CLASS_PROTODEF(cSilverfish); } ; -- cgit v1.2.3