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

This commit is contained in:
Dave Corley 2023-09-19 04:04:47 -05:00
parent e9d7bb780d
commit 0b8e0d4125

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