1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2026-01-06 10:11:00 +00:00

Merge pull request #22 from DreamWeave-MP/you-spin-me-right-round-baby

Fix(Client): Fix rotation order for received onObjectRotate packets
This commit is contained in:
Dave Corley 2023-09-20 20:44:01 -05:00 committed by GitHub
commit b8dd28c0ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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);
}
}
}