diff options
Diffstat (limited to 'src/net/eathena/npchandler.cpp')
-rw-r--r-- | src/net/eathena/npchandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/npchandler.cpp b/src/net/eathena/npchandler.cpp index bf6e874e1..33fbbea43 100644 --- a/src/net/eathena/npchandler.cpp +++ b/src/net/eathena/npchandler.cpp @@ -229,6 +229,12 @@ void NpcHandler::refine(const int index) const outMsg.writeInt32(index, "index"); } +void NpcHandler::identify(const int index) const +{ + MessageOut outMsg(CMSG_NPC_IDENTIFY); + outMsg.writeInt16(index, "index"); +} + int NpcHandler::getNpc(Net::MessageIn &msg) { if (msg.getId() == SMSG_NPC_CHOICE |