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:
parent
f46f028754
commit
094a73867a
1 changed files with 3 additions and 3 deletions
|
@ -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())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue