diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-03-02 21:26:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-03-02 21:26:25 +0300 |
commit | c2f54527e2a7047b5ef89f1b765efb51744d235e (patch) | |
tree | 17830545100667900cb5aa51ae710962fee209da /src/net/tmwa | |
parent | b3fea2cbd90c0d8a9560efe5227f035c701b5dff (diff) | |
download | manaverse-c2f54527e2a7047b5ef89f1b765efb51744d235e.tar.gz manaverse-c2f54527e2a7047b5ef89f1b765efb51744d235e.tar.bz2 manaverse-c2f54527e2a7047b5ef89f1b765efb51744d235e.tar.xz manaverse-c2f54527e2a7047b5ef89f1b765efb51744d235e.zip |
Impliment packet SMSG_PLAYER_COMBINED_EQUIPMENT 0x0b0a
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/inventoryrecv.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/net/tmwa/inventoryrecv.cpp b/src/net/tmwa/inventoryrecv.cpp index 8aacd38a0..991a777ef 100644 --- a/src/net/tmwa/inventoryrecv.cpp +++ b/src/net/tmwa/inventoryrecv.cpp @@ -369,7 +369,8 @@ void InventoryRecv::processPlayerStorage(Net::MessageIn &msg) fromBool(identified, Identified), Damaged_false, Favorite_false, - Equipm_false)); + Equipm_false, + -1)); } BLOCK_END("InventoryRecv::processPlayerInventory") } @@ -456,7 +457,8 @@ void InventoryRecv::processPlayerStorageEquip(Net::MessageIn &msg) fromBool(identified, Identified), Damaged_false, Favorite_false, - Equipm_false)); + Equipm_false, + -1)); } BLOCK_END("InventoryRecv::processPlayerStorageEquip") } |