diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-19 15:15:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-19 15:15:44 +0300 |
commit | f0315000bcf20685471966d2f25cd8e9f35e8230 (patch) | |
tree | b5b51e2880191696d6217181d5aa4d5c5341265f /src/net/tmwa | |
parent | 5615f8dde421e8d44c5e49a5a44ab7e69cb543a5 (diff) | |
download | plus-f0315000bcf20685471966d2f25cd8e9f35e8230.tar.gz plus-f0315000bcf20685471966d2f25cd8e9f35e8230.tar.bz2 plus-f0315000bcf20685471966d2f25cd8e9f35e8230.tar.xz plus-f0315000bcf20685471966d2f25cd8e9f35e8230.zip |
add ability to give more than one item to npc. (evol only)
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/npchandler.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/net/tmwa/npchandler.cpp b/src/net/tmwa/npchandler.cpp index 1356dbf8c..bb53ef33f 100644 --- a/src/net/tmwa/npchandler.cpp +++ b/src/net/tmwa/npchandler.cpp @@ -329,10 +329,14 @@ void NpcHandler::processNpcCommand(Net::MessageIn &msg, const int npcId) mDialog->clearRows(); break; case 10: // send selected item id + { + int invSize = msg.readInt32(); + if (!invSize) + invSize = 1; if (mDialog) - mDialog->itemRequest(); + mDialog->itemRequest(invSize); break; - + } default: logger->log("unknown npc command: %d", cmd); break; |