mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 11:23:51 +00:00
[Client] Don't ignore entire Actor packet if one actor can't be found
This commit is contained in:
parent
4d40f05576
commit
19418f4953
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ void Cell::initializeDedicatedActors(ActorList& actorList)
|
|||
{
|
||||
MWWorld::Ptr ptrFound = store->searchExact(baseActor.refNum, baseActor.mpNum);
|
||||
|
||||
if (!ptrFound) return;
|
||||
if (!ptrFound) continue;
|
||||
|
||||
initializeDedicatedActor(ptrFound);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue