summaryrefslogtreecommitdiff
path: root/src/net/eathena/buyingstorerecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-09-12 17:44:36 +0300
committerAndrei Karas <akaras@inbox.ru>2016-09-12 17:44:36 +0300
commit48c215204404187e69b60c912c345429bcd37934 (patch)
treef9706240e8414636100fd481d7bc6febc8a6a27f /src/net/eathena/buyingstorerecv.cpp
parentee3321098ab5ffd71a4809b035a39c06884da2d2 (diff)
downloadplus-48c215204404187e69b60c912c345429bcd37934.tar.gz
plus-48c215204404187e69b60c912c345429bcd37934.tar.bz2
plus-48c215204404187e69b60c912c345429bcd37934.tar.xz
plus-48c215204404187e69b60c912c345429bcd37934.zip
Add packet SMSG_BUYINGSTORE_REPORT 0x09e6.
Diffstat (limited to 'src/net/eathena/buyingstorerecv.cpp')
-rw-r--r--src/net/eathena/buyingstorerecv.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/net/eathena/buyingstorerecv.cpp b/src/net/eathena/buyingstorerecv.cpp
index 71396df4c..4480a01bf 100644
--- a/src/net/eathena/buyingstorerecv.cpp
+++ b/src/net/eathena/buyingstorerecv.cpp
@@ -196,7 +196,17 @@ void BuyingStoreRecv::processBuyingStoreReport(Net::MessageIn &msg)
UNIMPLIMENTEDPACKET;
msg.readInt16("item id");
msg.readInt16("amount");
- msg.readInt32("money limit");
+ if (msg.getVersion() >= 20141016)
+ {
+ msg.readInt32("money");
+ msg.readInt32("money limit");
+ msg.readInt32("char id");
+ msg.readInt32("date");
+ }
+ else
+ {
+ msg.readInt32("money limit");
+ }
}
void BuyingStoreRecv::processBuyingStoreDeleteItem(Net::MessageIn &msg)