summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/partyhandler.cpp9
-rw-r--r--src/net/eathena/partyhandler.h2
2 files changed, 0 insertions, 11 deletions
diff --git a/src/net/eathena/partyhandler.cpp b/src/net/eathena/partyhandler.cpp
index 43cb8066f..f4bb882b3 100644
--- a/src/net/eathena/partyhandler.cpp
+++ b/src/net/eathena/partyhandler.cpp
@@ -124,15 +124,6 @@ void PartyHandler::create(const std::string &name) const
outMsg.writeString(name.substr(0, 23), 24);
}
-void PartyHandler::invite(const Being *const being) const
-{
- if (being)
- {
- MessageOut outMsg(CMSG_PARTY_INVITE);
- outMsg.writeInt32(being->getId());
- }
-}
-
void PartyHandler::invite(const std::string &name) const
{
if (!actorManager)
diff --git a/src/net/eathena/partyhandler.h b/src/net/eathena/partyhandler.h
index 35693af89..5db8a505e 100644
--- a/src/net/eathena/partyhandler.h
+++ b/src/net/eathena/partyhandler.h
@@ -42,8 +42,6 @@ class PartyHandler final : public MessageHandler, public Ea::PartyHandler
void create(const std::string &name) const override final;
- void invite(const Being *const being) const override final;
-
void invite(const std::string &name) const override final;
void inviteResponse(const std::string &inviter,