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 3943d99c4..f00b0fa07 100644 --- a/src/net/eathena/npchandler.cpp +++ b/src/net/eathena/npchandler.cpp @@ -217,6 +217,12 @@ void NpcHandler::cooking(const CookingType::Type type, outMsg.writeInt16(nameId, "name id"); } +void NpcHandler::repair(const int index) const +{ + MessageOut outMsg(CMSG_NPC_REPAIR); + outMsg.writeInt16(static_cast<int16_t>(index), "index"); +} + int NpcHandler::getNpc(Net::MessageIn &msg) { if (msg.getId() == SMSG_NPC_CHOICE |