summaryrefslogtreecommitdiff
path: root/src/actions/chat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions/chat.cpp')
-rw-r--r--src/actions/chat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions/chat.cpp b/src/actions/chat.cpp
index 3c6b4f7fc..b5e507924 100644
--- a/src/actions/chat.cpp
+++ b/src/actions/chat.cpp
@@ -75,7 +75,7 @@ static void outString(const ChatTab *const tab,
{
if (!Net::getServerFeatures()->haveNativeGuilds())
return;
- Net::getGuildHandler()->chat(guild->getId(), str);
+ guildHandler->chat(guild->getId(), str);
}
else if (guildManager)
{
@@ -282,7 +282,7 @@ impHandler(createGuild)
}
else
{
- Net::getGuildHandler()->create(event.args);
+ guildHandler->create(event.args);
}
return true;
}