diff options
Diffstat (limited to 'src/net/eathena/vendingrecv.cpp')
-rw-r--r-- | src/net/eathena/vendingrecv.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/vendingrecv.cpp b/src/net/eathena/vendingrecv.cpp index f6668265f..3419ab343 100644 --- a/src/net/eathena/vendingrecv.cpp +++ b/src/net/eathena/vendingrecv.cpp @@ -220,6 +220,13 @@ void VendingRecv::processReport(Net::MessageIn &msg) { const int index = msg.readInt16("inv index") - INVENTORY_OFFSET; const int amount = msg.readInt16("amount"); + if (msg.getVersion() >= 20141016) + { + UNIMPLIMENTEDPACKET; + msg.readInt32("char id"); + msg.readInt32("time"); + msg.readInt32("zeny"); + } const Inventory *const inventory = PlayerInfo::getCartInventory(); if (!inventory) return; |