diff options
author | madmaxoft <github@xoft.cz> | 2013-11-08 21:06:31 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-11-08 21:06:31 +0100 |
commit | b24bdff308e6a2c35bef1a1ae3ea497a978c84c8 (patch) | |
tree | dcacb1496ea0f6695a5fdbc1a2550200000dfefe /source | |
parent | Protocol 1.7: Fixed using entities. (diff) | |
download | cuberite-b24bdff308e6a2c35bef1a1ae3ea497a978c84c8.tar cuberite-b24bdff308e6a2c35bef1a1ae3ea497a978c84c8.tar.gz cuberite-b24bdff308e6a2c35bef1a1ae3ea497a978c84c8.tar.bz2 cuberite-b24bdff308e6a2c35bef1a1ae3ea497a978c84c8.tar.lz cuberite-b24bdff308e6a2c35bef1a1ae3ea497a978c84c8.tar.xz cuberite-b24bdff308e6a2c35bef1a1ae3ea497a978c84c8.tar.zst cuberite-b24bdff308e6a2c35bef1a1ae3ea497a978c84c8.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Mobs/Chicken.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Mobs/Chicken.cpp b/source/Mobs/Chicken.cpp index 318f8a813..087fd088a 100644 --- a/source/Mobs/Chicken.cpp +++ b/source/Mobs/Chicken.cpp @@ -23,14 +23,14 @@ void cChicken::Tick(float a_Dt, cChunk & a_Chunk) { super::Tick(a_Dt, a_Chunk); - if (m_EggDropTimer == 6000 && m_World->GetTickRandomNumber(1) == 0) + if ((m_EggDropTimer == 6000) && (m_World->GetTickRandomNumber(1) == 0)) { cItems Drops; m_EggDropTimer = 0; Drops.push_back(cItem(E_ITEM_EGG, 1)); m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10); } - else if (m_EggDropTimer == 12000) + else if (m_EggDropTimer == 12000) { cItems Drops; m_EggDropTimer = 0; |