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

[General] Don't compress non-string values in sound record packets

This commit is contained in:
uramer 2020-03-16 19:17:00 +01:00
parent f46f028754
commit 094a73867a

View file

@ -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())
{