mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-01 21:45:38 +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);
|
MWWorld::Ptr ptrFound = store->searchExact(baseActor.refNum, baseActor.mpNum);
|
||||||
|
|
||||||
if (!ptrFound) return;
|
if (!ptrFound) continue;
|
||||||
|
|
||||||
initializeDedicatedActor(ptrFound);
|
initializeDedicatedActor(ptrFound);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue