mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 09:23:51 +00:00
Make sure adjustPosition() is safe to call for any actor
This commit is contained in:
parent
c8d85dcf30
commit
201999c4a9
1 changed files with 5 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue