mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-07-06 02:51:35 +00:00
Fix(Client): Fix rotation order for received onObjectRotate packets
This commit is contained in:
parent
37a4b2a103
commit
aba639e601
1 changed files with 1 additions and 1 deletions
|
@ -783,7 +783,7 @@ void ObjectList::rotateObjects(MWWorld::CellStore* cellStore)
|
||||||
ptrFound.getCellRef().getRefNum(), ptrFound.getCellRef().getMpNum());
|
ptrFound.getCellRef().getRefNum(), ptrFound.getCellRef().getMpNum());
|
||||||
|
|
||||||
MWBase::Environment::get().getWorld()->rotateObject(ptrFound,
|
MWBase::Environment::get().getWorld()->rotateObject(ptrFound,
|
||||||
baseObject.position.rot[0], baseObject.position.rot[1], baseObject.position.rot[2]);
|
baseObject.position.rot[0], baseObject.position.rot[1], baseObject.position.rot[2], MWBase::RotationFlag_none);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue