summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-03-02 21:26:25 +0300
committerAndrei Karas <akaras@inbox.ru>2019-03-02 21:26:25 +0300
commitc2f54527e2a7047b5ef89f1b765efb51744d235e (patch)
tree17830545100667900cb5aa51ae710962fee209da /src/net/tmwa
parentb3fea2cbd90c0d8a9560efe5227f035c701b5dff (diff)
downloadManaVerse-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.cpp6
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")
}