summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/partyhandler.cpp3
-rw-r--r--src/net/eathena/partyhandler.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/net/eathena/partyhandler.cpp b/src/net/eathena/partyhandler.cpp
index f22e5aabc..c612f13f0 100644
--- a/src/net/eathena/partyhandler.cpp
+++ b/src/net/eathena/partyhandler.cpp
@@ -143,8 +143,7 @@ void PartyHandler::invite(const std::string &name) const
}
}
-void PartyHandler::inviteResponse(const std::string &inviter A_UNUSED,
- const int partyId,
+void PartyHandler::inviteResponse(const int partyId,
const bool accept) const
{
if (localPlayer)
diff --git a/src/net/eathena/partyhandler.h b/src/net/eathena/partyhandler.h
index 22cabd81e..80d85e6fb 100644
--- a/src/net/eathena/partyhandler.h
+++ b/src/net/eathena/partyhandler.h
@@ -44,8 +44,7 @@ class PartyHandler final : public MessageHandler, public Ea::PartyHandler
void invite(const std::string &name) const override final;
- void inviteResponse(const std::string &inviter,
- const int partyId,
+ void inviteResponse(const int partyId,
const bool accept) const override final;
void leave() const override final;