1
0

Sorted a few constructors to remove warnings.

This commit is contained in:
madmaxoft
2013-12-20 16:39:20 +01:00
parent eabb88eb74
commit d6de11da07
10 changed files with 57 additions and 49 deletions

View File

@@ -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)
}