Changed variable name
This commit is contained in:
parent
2cf93b8e25
commit
705e6c1301
@ -1,4 +1,3 @@
|
||||
|
||||
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
||||
|
||||
#include "Chicken.h"
|
||||
@ -13,7 +12,7 @@
|
||||
|
||||
cChicken::cChicken(void) :
|
||||
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);
|
||||
|
||||
if (m_DropEggCount == 6000 && m_World->GetTickRandomNumber(1) == 0)
|
||||
if (m_EggDropTimer == 6000 && m_World->GetTickRandomNumber(1) == 0)
|
||||
{
|
||||
cItems Drops;
|
||||
m_DropEggCount = 0;
|
||||
m_EggDropTimer = 0;
|
||||
Drops.push_back(cItem(E_ITEM_EGG, 1));
|
||||
m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10);
|
||||
}
|
||||
else if (m_DropEggCount == 12000)
|
||||
else if (m_EggDropTimer == 12000)
|
||||
{
|
||||
cItems Drops;
|
||||
m_DropEggCount = 0;
|
||||
m_EggDropTimer = 0;
|
||||
Drops.push_back(cItem(E_ITEM_EGG, 1));
|
||||
m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_DropEggCount++;
|
||||
m_EggDropTimer++;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user