[Client] Ensure uninitialization of DedicatedActors for late packets

0.6.1
David Cernat 8 years ago
parent 1ae5bd19e1
commit bea3afaec8

@ -102,6 +102,11 @@ void Cell::updateDedicated(float dt)
actor->update(dt);
}
// Are we the authority over this cell? If so, uninitialize DedicatedActors
// after the above update
if (hasLocalAuthority())
uninitializeDedicatedActors();
}
void Cell::readPositions(ActorList& actorList)

Loading…
Cancel
Save