diff options
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 |