diff options
Diffstat (limited to 'src/net/eathena/markethandler.cpp')
-rw-r--r-- | src/net/eathena/markethandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/eathena/markethandler.cpp b/src/net/eathena/markethandler.cpp index fbd0e0987..d7ceeabe4 100644 --- a/src/net/eathena/markethandler.cpp +++ b/src/net/eathena/markethandler.cpp @@ -82,12 +82,12 @@ void MarketHandler::processMarketOpen(Net::MessageIn &msg) for (int f = 0; f < len; f ++) { const int itemId = msg.readInt16("item id"); - msg.readUInt8("type"); + const int type = msg.readUInt8("type"); const int value = msg.readInt32("price"); const int amount = msg.readInt32("amount"); msg.readInt16("view"); const unsigned char color = 1; - mBuyDialog->addItem(itemId, color, amount, value); + mBuyDialog->addItem(itemId, type, color, amount, value); } } |