1
0

Merge pull request #2624 from Gargaj/patch-2

Only send creeper metadata updates on change
This commit is contained in:
worktycho 2015-11-07 21:29:41 +00:00
commit f3d3c9adca

View File

@ -28,11 +28,14 @@ void cCreeper::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
super::Tick(a_Dt, a_Chunk); super::Tick(a_Dt, a_Chunk);
if (!TargetIsInRange() && !m_BurnedWithFlintAndSteel) if (!TargetIsInRange() && !m_BurnedWithFlintAndSteel)
{
if (m_bIsBlowing)
{ {
m_ExplodingTimer = 0; m_ExplodingTimer = 0;
m_bIsBlowing = false; m_bIsBlowing = false;
m_World->BroadcastEntityMetadata(*this); m_World->BroadcastEntityMetadata(*this);
} }
}
else else
{ {
if (m_bIsBlowing) if (m_bIsBlowing)