summaryrefslogtreecommitdiff
path: root/src/net/tmwa/partyhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/partyhandler.cpp')
-rw-r--r--src/net/tmwa/partyhandler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/tmwa/partyhandler.cpp b/src/net/tmwa/partyhandler.cpp
index 310d71783..634ecbff5 100644
--- a/src/net/tmwa/partyhandler.cpp
+++ b/src/net/tmwa/partyhandler.cpp
@@ -185,9 +185,9 @@ void PartyHandler::chat(const std::string &text) const
outMsg.writeString(text, static_cast<int>(text.length()));
}
-void PartyHandler::setShareExperience(const PartyShare share) const
+void PartyHandler::setShareExperience(const Net::PartyShare share) const
{
- if (share == PARTY_SHARE_NOT_POSSIBLE)
+ if (share == Net::PartyShare::NOT_POSSIBLE)
return;
MessageOut outMsg(CMSG_PARTY_SETTINGS);
@@ -195,9 +195,9 @@ void PartyHandler::setShareExperience(const PartyShare share) const
outMsg.writeInt16(static_cast<int16_t>(mShareItems));
}
-void PartyHandler::setShareItems(const PartyShare share) const
+void PartyHandler::setShareItems(const Net::PartyShare share) const
{
- if (share == PARTY_SHARE_NOT_POSSIBLE)
+ if (share == Net::PartyShare::NOT_POSSIBLE)
return;
MessageOut outMsg(CMSG_PARTY_SETTINGS);