From 094a73867a105a4bd7c012e55f8b212b7ba275ac Mon Sep 17 00:00:00 2001 From: uramer Date: Mon, 16 Mar 2020 19:17:00 +0100 Subject: [PATCH] [General] Don't compress non-string values in sound record packets --- .../openmw-mp/Packets/Worldstate/PacketRecordDynamic.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/openmw-mp/Packets/Worldstate/PacketRecordDynamic.cpp b/components/openmw-mp/Packets/Worldstate/PacketRecordDynamic.cpp index 6badd51dd..5dc8e2826 100644 --- a/components/openmw-mp/Packets/Worldstate/PacketRecordDynamic.cpp +++ b/components/openmw-mp/Packets/Worldstate/PacketRecordDynamic.cpp @@ -860,9 +860,9 @@ void PacketRecordDynamic::Packet(RakNet::BitStream *newBitstream, bool send) RW(record.baseId, send, true); RW(recordData.mId, send, true); RW(recordData.mSound, send, true); - RW(recordData.mData.mVolume, send, true); - RW(recordData.mData.mMinRange, send, true); - RW(recordData.mData.mMaxRange, send, true); + RW(recordData.mData.mVolume, send); + RW(recordData.mData.mMinRange, send); + RW(recordData.mData.mMaxRange, send); if (!record.baseId.empty()) {