diff options
author | madmaxoft <github@xoft.cz> | 2013-12-20 16:39:20 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-12-20 16:39:20 +0100 |
commit | d6de11da07af96c9989d9a80a4ee69dad7e9380e (patch) | |
tree | 9d4ed13590197d94ffd819c92771260802413e49 /src/Mobs/Zombie.cpp | |
parent | Fixed minor warnings. (diff) | |
download | cuberite-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 '')
-rw-r--r-- | src/Mobs/Zombie.cpp | 9 |
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) } + + |