summaryrefslogtreecommitdiff
path: root/src/net/tmwa/buysellhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/buysellhandler.cpp')
-rw-r--r--src/net/tmwa/buysellhandler.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/net/tmwa/buysellhandler.cpp b/src/net/tmwa/buysellhandler.cpp
index 4668c1829..fdb8f86ba 100644
--- a/src/net/tmwa/buysellhandler.cpp
+++ b/src/net/tmwa/buysellhandler.cpp
@@ -94,7 +94,7 @@ void BuySellHandler::handleMessage(Net::MessageIn &msg)
void BuySellHandler::processNpcBuy(Net::MessageIn &msg)
{
- msg.readInt16(); // length
+ msg.readInt16("len");
unsigned int sz = 11;
if (serverVersion > 0)
sz += 1;
@@ -104,13 +104,13 @@ void BuySellHandler::processNpcBuy(Net::MessageIn &msg)
for (unsigned int k = 0; k < n_items; k++)
{
- const int value = msg.readInt32();
- msg.readInt32(); // DCvalue
- msg.readUInt8(); // type
- const int itemId = msg.readInt16();
+ const int value = msg.readInt32("price");
+ msg.readInt32("dc value?");
+ msg.readUInt8("type");
+ const int itemId = msg.readInt16("item id");
uint8_t color = 1;
if (serverVersion > 0)
- color = msg.readUInt8();
+ color = msg.readUInt8("item color");
mBuyDialog->addItem(itemId, color, 0, value);
}
mBuyDialog->sort();
@@ -118,7 +118,7 @@ void BuySellHandler::processNpcBuy(Net::MessageIn &msg)
void BuySellHandler::processNpcSellResponse(Net::MessageIn &msg)
{
- switch (msg.readUInt8())
+ switch (msg.readUInt8("result"))
{
case 0:
NotifyManager::notify(NotifyTypes::SOLD);