diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-14 01:42:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-14 01:42:11 +0300 |
commit | 90db2a6cd38c21648f6de6bdfad1e04654ff61da (patch) | |
tree | 6324cb5cd4320bc16baeeae28ccac2b454bd5a3c /src/net/eathena/friendshandler.cpp | |
parent | afae3b08b51c527fb7d52027baacebabf2355c12 (diff) | |
download | mv-90db2a6cd38c21648f6de6bdfad1e04654ff61da.tar.gz mv-90db2a6cd38c21648f6de6bdfad1e04654ff61da.tar.bz2 mv-90db2a6cd38c21648f6de6bdfad1e04654ff61da.tar.xz mv-90db2a6cd38c21648f6de6bdfad1e04654ff61da.zip |
eathena: add packet CMSG_FRIENDS_ADD_PLAYER 0x023b.
Diffstat (limited to 'src/net/eathena/friendshandler.cpp')
-rw-r--r-- | src/net/eathena/friendshandler.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/friendshandler.cpp b/src/net/eathena/friendshandler.cpp index 4914a9a1c..6a42f7aa4 100644 --- a/src/net/eathena/friendshandler.cpp +++ b/src/net/eathena/friendshandler.cpp @@ -20,6 +20,7 @@ #include "net/eathena/friendshandler.h" +#include "net/eathena/messageout.h" #include "net/eathena/protocol.h" #include "debug.h" @@ -90,4 +91,10 @@ void FriendsHandler::processRequestAck(Net::MessageIn &msg) msg.readString(24, "name"); } +void FriendsHandler::invite(const std::string &name) const +{ + createOutPacket(CMSG_FRIENDS_ADD_PLAYER); + outMsg.writeString(name, 24, "name"); +} + } // namespace EAthena |