From f5e6124ee06f2c42f921391c186800adbeb8bc05 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Fri, 20 Dec 2013 19:10:07 +0100 Subject: Fixed the rest of constructor reorders. --- src/Mobs/Zombie.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Mobs/Zombie.cpp') diff --git a/src/Mobs/Zombie.cpp b/src/Mobs/Zombie.cpp index 29563a755..a046fcc92 100644 --- a/src/Mobs/Zombie.cpp +++ b/src/Mobs/Zombie.cpp @@ -11,8 +11,8 @@ cZombie::cZombie(bool a_IsVillagerZombie) : super("Zombie", mtZombie, "mob.zombie.hurt", "mob.zombie.death", 0.6, 1.8), - m_IsConverting(false), - m_IsVillagerZombie(a_IsVillagerZombie) + m_IsVillagerZombie(a_IsVillagerZombie), + m_IsConverting(false) { SetBurnsInDaylight(true); } -- cgit v1.2.3