diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-30 18:49:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-30 18:49:42 +0300 |
commit | b205c5b9e6614a2821f2a44dc104306a27ade7ba (patch) | |
tree | 510b4d126b64b9db4abaedd3f7a708bb9e0e0435 /src/net/tmwa | |
parent | fde614c1e6e944b4805e7e6a89689b9d546330ad (diff) | |
download | plus-b205c5b9e6614a2821f2a44dc104306a27ade7ba.tar.gz plus-b205c5b9e6614a2821f2a44dc104306a27ade7ba.tar.bz2 plus-b205c5b9e6614a2821f2a44dc104306a27ade7ba.tar.xz plus-b205c5b9e6614a2821f2a44dc104306a27ade7ba.zip |
eathena: add packet SMSG_NPC_CHANGETITLE 0x0b06.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/npchandler.cpp | 9 | ||||
-rw-r--r-- | src/net/tmwa/npchandler.h | 2 |
2 files changed, 0 insertions, 11 deletions
diff --git a/src/net/tmwa/npchandler.cpp b/src/net/tmwa/npchandler.cpp index 647642356..6a67dccc1 100644 --- a/src/net/tmwa/npchandler.cpp +++ b/src/net/tmwa/npchandler.cpp @@ -289,13 +289,4 @@ int NpcHandler::getNpc(Net::MessageIn &msg) return npcId; } -void NpcHandler::processChangeTitle(Net::MessageIn &msg) -{ - npcHandler->getNpc(msg); - mRequestLang = false; - const std::string str = msg.readString(-1, "title"); - if (mDialog) - mDialog->setCaption(str); -} - } // namespace TmwAthena diff --git a/src/net/tmwa/npchandler.h b/src/net/tmwa/npchandler.h index f399a98d9..c9a64d73f 100644 --- a/src/net/tmwa/npchandler.h +++ b/src/net/tmwa/npchandler.h @@ -69,8 +69,6 @@ class NpcHandler final : public MessageHandler, public Ea::NpcHandler int getNpc(Net::MessageIn &msg) override final; - static void processChangeTitle(Net::MessageIn &msg); - void produceMix(const int nameId, const int materialId1, const int materialId2, |