mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-06-25 15:11:35 +00:00
[General] Compress item refIds in PlayerEquipment packets
This commit is contained in:
parent
2332423527
commit
2dbf3893c0
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ void PacketPlayerEquipment::Packet(RakNet::BitStream *bs, bool send)
|
||||||
|
|
||||||
void PacketPlayerEquipment::ExchangeItemInformation(Item &item, bool send)
|
void PacketPlayerEquipment::ExchangeItemInformation(Item &item, bool send)
|
||||||
{
|
{
|
||||||
RW(item.refId, send);
|
RW(item.refId, send, true);
|
||||||
RW(item.count, send);
|
RW(item.count, send);
|
||||||
RW(item.charge, send);
|
RW(item.charge, send);
|
||||||
RW(item.enchantmentCharge, send);
|
RW(item.enchantmentCharge, send);
|
||||||
|
|
Loading…
Reference in a new issue