diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-01-25 20:56:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-01-25 20:56:18 +0300 |
commit | 69497b251263eb590d75326effa9fe7206c49ba0 (patch) | |
tree | b8df0ab8ab88d7987eb40cd06d31371878212cc0 /src/net/eathena | |
parent | fa79a8921ab18021e58c22fddd735008c15cea10 (diff) | |
download | ManaVerse-69497b251263eb590d75326effa9fe7206c49ba0.tar.gz ManaVerse-69497b251263eb590d75326effa9fe7206c49ba0.tar.bz2 ManaVerse-69497b251263eb590d75326effa9fe7206c49ba0.tar.xz ManaVerse-69497b251263eb590d75326effa9fe7206c49ba0.zip |
Update fields for packet SMSG_NPC_MARKET_OPEN
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/marketrecv.cpp | 2 |
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); } |