summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Zombie.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-12-20 16:39:20 +0100
committermadmaxoft <github@xoft.cz>2013-12-20 16:39:20 +0100
commitd6de11da07af96c9989d9a80a4ee69dad7e9380e (patch)
tree9d4ed13590197d94ffd819c92771260802413e49 /src/Mobs/Zombie.cpp
parentFixed minor warnings. (diff)
downloadcuberite-d6de11da07af96c9989d9a80a4ee69dad7e9380e.tar
cuberite-d6de11da07af96c9989d9a80a4ee69dad7e9380e.tar.gz
cuberite-d6de11da07af96c9989d9a80a4ee69dad7e9380e.tar.bz2
cuberite-d6de11da07af96c9989d9a80a4ee69dad7e9380e.tar.lz
cuberite-d6de11da07af96c9989d9a80a4ee69dad7e9380e.tar.xz
cuberite-d6de11da07af96c9989d9a80a4ee69dad7e9380e.tar.zst
cuberite-d6de11da07af96c9989d9a80a4ee69dad7e9380e.zip
Diffstat (limited to 'src/Mobs/Zombie.cpp')
-rw-r--r--src/Mobs/Zombie.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Mobs/Zombie.cpp b/src/Mobs/Zombie.cpp
index a485d2b55..29563a755 100644
--- a/src/Mobs/Zombie.cpp
+++ b/src/Mobs/Zombie.cpp
@@ -8,10 +8,11 @@
-cZombie::cZombie(bool IsVillagerZombie) :
+
+cZombie::cZombie(bool a_IsVillagerZombie) :
super("Zombie", mtZombie, "mob.zombie.hurt", "mob.zombie.death", 0.6, 1.8),
- m_bIsConverting(false),
- m_bIsVillagerZombie(IsVillagerZombie)
+ m_IsConverting(false),
+ m_IsVillagerZombie(a_IsVillagerZombie)
{
SetBurnsInDaylight(true);
}
@@ -45,3 +46,5 @@ void cZombie::MoveToPosition(const Vector3f & a_Position)
}
+
+