summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-01-25 20:56:18 +0300
committerAndrei Karas <akaras@inbox.ru>2019-01-25 20:56:18 +0300
commit69497b251263eb590d75326effa9fe7206c49ba0 (patch)
treeb8df0ab8ab88d7987eb40cd06d31371878212cc0
parentfa79a8921ab18021e58c22fddd735008c15cea10 (diff)
downloadplus-69497b251263eb590d75326effa9fe7206c49ba0.tar.gz
plus-69497b251263eb590d75326effa9fe7206c49ba0.tar.bz2
plus-69497b251263eb590d75326effa9fe7206c49ba0.tar.xz
plus-69497b251263eb590d75326effa9fe7206c49ba0.zip
Update fields for packet SMSG_NPC_MARKET_OPEN
-rw-r--r--src/net/eathena/marketrecv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/marketrecv.cpp b/src/net/eathena/marketrecv.cpp
index 26149f561..745c9789d 100644
--- a/src/net/eathena/marketrecv.cpp
+++ b/src/net/eathena/marketrecv.cpp
@@ -84,7 +84,7 @@ void MarketRecv::processMarketOpen(Net::MessageIn &msg)
const ItemTypeT type = static_cast<ItemTypeT>(msg.readUInt8("type"));
const int value = msg.readInt32("price");
const int amount = msg.readInt32("amount");
- msg.readInt16("view");
+ msg.readInt16("weight"); // +++ compare with item weight from db?
const ItemColor color = ItemColor_one;
mBuyDialog->addItem(itemId, type, color, amount, value);
}