summaryrefslogtreecommitdiff
path: root/src/net/eathena/mercenaryhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-25 13:45:37 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-25 13:45:37 +0300
commit0ef4d8b885bf98735dbf800fc7385f625f18a9e4 (patch)
tree69c6370ab94d675251aa99f4b2396c293c9c1498 /src/net/eathena/mercenaryhandler.cpp
parent0416def34b70d89754006fa96a49c1180b5bbacf (diff)
downloadplus-0ef4d8b885bf98735dbf800fc7385f625f18a9e4.tar.gz
plus-0ef4d8b885bf98735dbf800fc7385f625f18a9e4.tar.bz2
plus-0ef4d8b885bf98735dbf800fc7385f625f18a9e4.tar.xz
plus-0ef4d8b885bf98735dbf800fc7385f625f18a9e4.zip
eathena: add packet CMSG_HOMMERC_MOVE_TO_MASTER 0x0234.
Diffstat (limited to 'src/net/eathena/mercenaryhandler.cpp')
-rw-r--r--src/net/eathena/mercenaryhandler.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/eathena/mercenaryhandler.cpp b/src/net/eathena/mercenaryhandler.cpp
index 541f62cf7..dae3f1836 100644
--- a/src/net/eathena/mercenaryhandler.cpp
+++ b/src/net/eathena/mercenaryhandler.cpp
@@ -186,4 +186,13 @@ void MercenaryHandler::fire()
outMsg.writeInt8(2, "action"); // delete
}
+void MercenaryHandler::moveToMaster() const
+{
+ const int id = PlayerInfo::getMercenaryId();
+ if (!id)
+ return;
+ createOutPacket(CMSG_HOMMERC_MOVE_TO_MASTER);
+ outMsg.writeInt32(id);
+}
+
} // namespace EAthena