From 2dbf3893c0a0bd9e6611b628e1bf85a20e869cfd Mon Sep 17 00:00:00 2001 From: David Cernat Date: Sat, 28 Jul 2018 01:50:44 +0300 Subject: [PATCH] [General] Compress item refIds in PlayerEquipment packets --- components/openmw-mp/Packets/Player/PacketPlayerEquipment.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/openmw-mp/Packets/Player/PacketPlayerEquipment.cpp b/components/openmw-mp/Packets/Player/PacketPlayerEquipment.cpp index c6f267935..cd5aaaf97 100644 --- a/components/openmw-mp/Packets/Player/PacketPlayerEquipment.cpp +++ b/components/openmw-mp/Packets/Player/PacketPlayerEquipment.cpp @@ -46,7 +46,7 @@ void PacketPlayerEquipment::Packet(RakNet::BitStream *bs, bool send) void PacketPlayerEquipment::ExchangeItemInformation(Item &item, bool send) { - RW(item.refId, send); + RW(item.refId, send, true); RW(item.count, send); RW(item.charge, send); RW(item.enchantmentCharge, send);