diff options
Diffstat (limited to 'src/Mobs/Chicken.cpp')
-rw-r--r-- | src/Mobs/Chicken.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Mobs/Chicken.cpp b/src/Mobs/Chicken.cpp index cc9609450..a2f868291 100644 --- a/src/Mobs/Chicken.cpp +++ b/src/Mobs/Chicken.cpp @@ -33,10 +33,7 @@ void cChicken::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) return; // Babies don't lay eggs } - if ( - ((m_EggDropTimer == 6000) && GetRandomProvider().RandBool()) || - m_EggDropTimer == 12000 - ) + if (((m_EggDropTimer == 6000) && GetRandomProvider().RandBool()) || m_EggDropTimer == 12000) { cItems Drops; m_EggDropTimer = 0; |