diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-10 16:54:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-10 16:54:46 +0300 |
commit | 7d162145958fccfcc3ba32a7db3b8161cfe83fe2 (patch) | |
tree | d109f74483a9274bca46a41670cc5ec69b50876f /src/net/eathena/npchandler.cpp | |
parent | 8aad60beb37fb0f364b0d8ab5bbe66232eacb676 (diff) | |
download | plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.gz plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.bz2 plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.xz plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.zip |
Mark all unimplimented packets with UNIMPLIMENTEDPACKET attribute.
Diffstat (limited to 'src/net/eathena/npchandler.cpp')
-rw-r--r-- | src/net/eathena/npchandler.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/eathena/npchandler.cpp b/src/net/eathena/npchandler.cpp index e797c0477..a4487c408 100644 --- a/src/net/eathena/npchandler.cpp +++ b/src/net/eathena/npchandler.cpp @@ -324,6 +324,7 @@ int NpcHandler::getNpc(Net::MessageIn &msg) void NpcHandler::processNpcCutin(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; mRequestLang = false; msg.readString(64, "image name"); msg.readUInt8("type"); @@ -331,6 +332,7 @@ void NpcHandler::processNpcCutin(Net::MessageIn &msg) void NpcHandler::processNpcViewPoint(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; mRequestLang = false; // +++ probably need add nav point and start moving to it msg.readInt32("npc id"); @@ -345,6 +347,7 @@ void NpcHandler::processNpcViewPoint(Net::MessageIn &msg) void NpcHandler::processNpcShowProgressBar(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; mRequestLang = false; // +++ probably need show progress bar in npc dialog msg.readInt32("color"); @@ -353,6 +356,7 @@ void NpcHandler::processNpcShowProgressBar(Net::MessageIn &msg) void NpcHandler::processNpcCloseTimeout(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; mRequestLang = false; // this packet send after npc closed by timeout. msg.readInt32("npc id"); |