summaryrefslogtreecommitdiff
path: root/src/net/tmwserv/partyhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwserv/partyhandler.cpp')
-rw-r--r--src/net/tmwserv/partyhandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/tmwserv/partyhandler.cpp b/src/net/tmwserv/partyhandler.cpp
index aa5ef0b8..880674d3 100644
--- a/src/net/tmwserv/partyhandler.cpp
+++ b/src/net/tmwserv/partyhandler.cpp
@@ -70,7 +70,7 @@ void PartyHandler::handleMessage(MessageIn &msg)
if (msg.readInt8() == ERRMSG_OK)
{
player_node->setInParty(true);
- chatWindow->chatLog("Joined party");
+ localChatTab->chatLog("Joined party");
}
}
@@ -87,7 +87,7 @@ void PartyHandler::handleMessage(MessageIn &msg)
msg.readInt16(); // being id
std::string name = msg.readString();
- chatWindow->chatLog(name + " joined the party");
+ localChatTab->chatLog(name + " joined the party");
if (!player_node->getInParty())
player_node->setInParty(true);