1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-01 11:15:33 +00:00

Fix(Client): Fix rotation order for received onObjectRotate packets

This commit is contained in:
Dave Corley 2023-09-19 04:04:47 -05:00 committed by Phoenix / Hotaru
parent 37a4b2a103
commit aba639e601
No known key found for this signature in database
GPG key ID: 50AE27B713475E99

View file

@ -783,7 +783,7 @@ void ObjectList::rotateObjects(MWWorld::CellStore* cellStore)
ptrFound.getCellRef().getRefNum(), ptrFound.getCellRef().getMpNum());
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);
}
}
}