summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/net/eathena/partyhandler.cpp7
-rw-r--r--src/net/eathena/protocol.h1
2 files changed, 7 insertions, 1 deletions
diff --git a/src/net/eathena/partyhandler.cpp b/src/net/eathena/partyhandler.cpp
index b955101d1..43cb8066f 100644
--- a/src/net/eathena/partyhandler.cpp
+++ b/src/net/eathena/partyhandler.cpp
@@ -143,7 +143,12 @@ void PartyHandler::invite(const std::string &name) const
if (being)
{
MessageOut outMsg(CMSG_PARTY_INVITE);
- outMsg.writeInt32(being->getId());
+ outMsg.writeInt32(being->getId(), "account id");
+ }
+ else
+ {
+ MessageOut outMsg(CMSG_PARTY_INVITE2);
+ outMsg.writeString(name, 24, "nick");
}
}
diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h
index 7ae554664..15bfcbf3c 100644
--- a/src/net/eathena/protocol.h
+++ b/src/net/eathena/protocol.h
@@ -275,6 +275,7 @@
#define CMSG_PARTY_CREATE 0x00f9
#define CMSG_PARTY_CREATE2 0x01e8
#define CMSG_PARTY_INVITE 0x00fc
+#define CMSG_PARTY_INVITE2 0x08a9
#define CMSG_PARTY_INVITED 0x00ff
#define CMSG_PARTY_LEAVE 0x0100
#define CMSG_PARTY_SETTINGS 0x0102