mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 06:53:52 +00:00
Merge branch 'fallinglift' into 'master'
Unbreak elevators (#5670) See merge request OpenMW/openmw!385
This commit is contained in:
commit
3c5d025849
1 changed files with 1 additions and 5 deletions
|
@ -32,11 +32,7 @@ namespace MWScript
|
|||
std::vector<MWWorld::Ptr> actors;
|
||||
MWBase::Environment::get().getWorld()->getActorsStandingOn (ptr, actors);
|
||||
for (auto& actor : actors)
|
||||
{
|
||||
osg::Vec3f actorPos(actor.getRefData().getPosition().asVec3());
|
||||
actorPos += diff;
|
||||
MWBase::Environment::get().getWorld()->moveObject(actor, actorPos.x(), actorPos.y(), actorPos.z());
|
||||
}
|
||||
MWBase::Environment::get().getWorld()->queueMovement(actor, diff);
|
||||
}
|
||||
|
||||
template<class R>
|
||||
|
|
Loading…
Reference in a new issue