summaryrefslogtreecommitdiff
path: root/src/net/eathena/inventoryrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-01-13 23:27:28 +0300
committerAndrei Karas <akaras@inbox.ru>2016-01-13 23:27:28 +0300
commit9a11f30d150928e504406139691b42cce0922174 (patch)
tree2474bb28c75a5aac2b5f9d8e514d885f059a31ce /src/net/eathena/inventoryrecv.cpp
parent4466f50d7bb2d83d2b3cd86d85aff14486f84756 (diff)
downloadManaVerse-9a11f30d150928e504406139691b42cce0922174.tar.gz
ManaVerse-9a11f30d150928e504406139691b42cce0922174.tar.bz2
ManaVerse-9a11f30d150928e504406139691b42cce0922174.tar.xz
ManaVerse-9a11f30d150928e504406139691b42cce0922174.zip
Add packet SMSG_SELECT_CART 0x00c2
Diffstat (limited to 'src/net/eathena/inventoryrecv.cpp')
-rw-r--r--src/net/eathena/inventoryrecv.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryrecv.cpp b/src/net/eathena/inventoryrecv.cpp
index d17e83917..ecd0a8257 100644
--- a/src/net/eathena/inventoryrecv.cpp
+++ b/src/net/eathena/inventoryrecv.cpp
@@ -1098,4 +1098,14 @@ void InventoryRecv::processPlayerInventoryRemove(Net::MessageIn &msg)
BLOCK_END("InventoryRecv::processPlayerInventoryRemove")
}
+void InventoryRecv::processSelectCart(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+
+ const int count = msg.readInt16("len") - 8;
+ msg.readBeingId("account id");
+ for (int f = 0; f < count; f ++)
+ msg.readUInt8("cart type");
+}
+
} // namespace EAthena