1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 12:53:53 +00:00

Merge branch 'nofallfloor' into 'master'

Update physics object position after spawning.

See merge request OpenMW/openmw!449
This commit is contained in:
psi29a 2020-12-11 11:28:29 +00:00
commit 9a35c5815e

View file

@ -253,7 +253,7 @@ namespace
bool operator() (const MWWorld::Ptr& ptr)
{
if (!ptr.getRefData().isDeleted() && ptr.getRefData().isEnabled())
ptr.getClass().adjustPosition (ptr, false);
ptr.getClass().adjustPosition (ptr, true);
return true;
}
};