1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 09:53:50 +00:00

Make sure adjustPosition() is safe to call for any actor

This commit is contained in:
Alexei Dobrohotov 2020-12-14 03:01:26 +03:00
parent c8d85dcf30
commit 201999c4a9

View file

@ -1345,7 +1345,11 @@ namespace MWWorld
moveObject(ptr, ptr.getCell(), pos.x(), pos.y(), pos.z());
if (ptr.getClass().isActor())
mPhysics->getActor(ptr)->resetPosition();
{
MWPhysics::Actor* actor = mPhysics->getActor(ptr);
if (actor)
actor->resetPosition();
}
}
void World::fixPosition()