1
0
Fork 0
Logicparrot's instructions
This commit is contained in:
Alexander Harkness 2016-02-20 18:39:01 +00:00
parent 4495dd62b9
commit e628908a7d
1 changed files with 1 additions and 9 deletions

View File

@ -654,12 +654,12 @@ void cChunk::Tick(std::chrono::milliseconds a_Dt)
(*itr)->SetParentChunk(nullptr);
MoveEntityToNewChunk(*itr);
itr = m_Entities.erase(itr);
// Mark as dirty if it was a server-generated entity:
if (!(*itr)->IsPlayer())
{
MarkDirty();
}
itr = m_Entities.erase(itr);
}
else
{
@ -3189,11 +3189,3 @@ NIBBLETYPE cChunk::GetTimeAlteredLight(NIBBLETYPE a_Skylight) const
// Because NIBBLETYPE is unsigned, we clamp it to 0 .. 15 by checking for values above 15
return (a_Skylight < 16)? a_Skylight : 0;
}