1
0

Changed variable name

This commit is contained in:
tonibm19 2013-11-08 17:16:36 +01:00
parent 2cf93b8e25
commit 705e6c1301

View File

@ -1,4 +1,3 @@
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "Chicken.h" #include "Chicken.h"
@ -13,7 +12,7 @@
cChicken::cChicken(void) : cChicken::cChicken(void) :
super("Chicken", mtChicken, "mob.chicken.hurt", "mob.chicken.hurt", 0.3, 0.4), super("Chicken", mtChicken, "mob.chicken.hurt", "mob.chicken.hurt", 0.3, 0.4),
m_DropEggCount(0) m_EggDropTimer(0)
{ {
} }
@ -24,23 +23,23 @@ void cChicken::Tick(float a_Dt, cChunk & a_Chunk)
{ {
super::Tick(a_Dt, a_Chunk); super::Tick(a_Dt, a_Chunk);
if (m_DropEggCount == 6000 && m_World->GetTickRandomNumber(1) == 0) if (m_EggDropTimer == 6000 && m_World->GetTickRandomNumber(1) == 0)
{ {
cItems Drops; cItems Drops;
m_DropEggCount = 0; m_EggDropTimer = 0;
Drops.push_back(cItem(E_ITEM_EGG, 1)); Drops.push_back(cItem(E_ITEM_EGG, 1));
m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10); m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10);
} }
else if (m_DropEggCount == 12000) else if (m_EggDropTimer == 12000)
{ {
cItems Drops; cItems Drops;
m_DropEggCount = 0; m_EggDropTimer = 0;
Drops.push_back(cItem(E_ITEM_EGG, 1)); Drops.push_back(cItem(E_ITEM_EGG, 1));
m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10); m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10);
} }
else else
{ {
m_DropEggCount++; m_EggDropTimer++;
} }
} }