summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Bat.h
diff options
context:
space:
mode:
authormgueydan <gueydan.mathieuÃ@gmail.com>2013-09-07 20:02:50 +0200
committermgueydan <gueydan.mathieuÃ@gmail.com>2013-09-07 20:02:50 +0200
commit1e02e04d2ce528df037d1ca37314ea55e8806c52 (patch)
tree3013f20a7fe9a418802856a247616c4ab47609fa /source/Mobs/Bat.h
parentAdding Water and Lava as transparency blocks (diff)
downloadcuberite-1e02e04d2ce528df037d1ca37314ea55e8806c52.tar
cuberite-1e02e04d2ce528df037d1ca37314ea55e8806c52.tar.gz
cuberite-1e02e04d2ce528df037d1ca37314ea55e8806c52.tar.bz2
cuberite-1e02e04d2ce528df037d1ca37314ea55e8806c52.tar.lz
cuberite-1e02e04d2ce528df037d1ca37314ea55e8806c52.tar.xz
cuberite-1e02e04d2ce528df037d1ca37314ea55e8806c52.tar.zst
cuberite-1e02e04d2ce528df037d1ca37314ea55e8806c52.zip
Diffstat (limited to 'source/Mobs/Bat.h')
-rw-r--r--source/Mobs/Bat.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/source/Mobs/Bat.h b/source/Mobs/Bat.h
index 8e4cde29f..e0afb5744 100644
--- a/source/Mobs/Bat.h
+++ b/source/Mobs/Bat.h
@@ -13,13 +13,11 @@ class cBat :
typedef cPassiveMonster super;
public:
- cBat(void) :
- // TODO: The size is only a guesstimate, measure in vanilla and fix the size values here
- super("Bat", 65, "mob.bat.hurt", "mob.bat.death", 0.7, 0.7)
- {
- }
+ cBat(void);
CLASS_PROTODEF(cBat);
+
+ virtual eFamily GetMobFamily(void) const override;
} ;