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/adminhandler.cpp | |
parent | 8aad60beb37fb0f364b0d8ab5bbe66232eacb676 (diff) | |
download | ManaVerse-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.gz ManaVerse-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.bz2 ManaVerse-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.xz ManaVerse-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.zip |
Mark all unimplimented packets with UNIMPLIMENTEDPACKET attribute.
Diffstat (limited to 'src/net/eathena/adminhandler.cpp')
-rw-r--r-- | src/net/eathena/adminhandler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp index 8f04cc748..1eb0b6eac 100644 --- a/src/net/eathena/adminhandler.cpp +++ b/src/net/eathena/adminhandler.cpp @@ -22,6 +22,8 @@ #include "net/eathena/adminhandler.h" +#include "logger.h" + #include "net/eathena/messageout.h" #include "net/eathena/protocol.h" @@ -184,12 +186,14 @@ void AdminHandler::unequipAll(const Being *const being) const void AdminHandler::processAdminGetLoginAck(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; msg.readInt32("account id"); msg.readString(24, "login"); } void AdminHandler::processSetTileType(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; // +++ here need set collision tile for map msg.readInt16("x"); msg.readInt16("y"); @@ -206,6 +210,7 @@ void AdminHandler::requestStats(const std::string &name) void AdminHandler::processAccountStats(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; // +++ need show in other players stats window, nick in mStatsName msg.readUInt8("str"); msg.readUInt8("need str"); |