diff options
Diffstat (limited to 'src/notifymanager.cpp')
-rw-r--r-- | src/notifymanager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/notifymanager.cpp b/src/notifymanager.cpp index eb58c5ce8..a31773f08 100644 --- a/src/notifymanager.cpp +++ b/src/notifymanager.cpp @@ -42,7 +42,7 @@ namespace NotifyManager { static ChatTab *getGuildTab() { - const Guild *const guild = player_node->getGuild(); + const Guild *const guild = localPlayer->getGuild(); if (guild) { if (guild->getServerGuild()) @@ -75,7 +75,7 @@ namespace NotifyManager case NotifyFlags::GUILD: { - if (!player_node) + if (!localPlayer) return; ChatTab *const tab = getGuildTab(); chatLog(tab, gettext(info.text)); @@ -91,8 +91,8 @@ namespace NotifyManager case NotifyFlags::SPEECH: { - if (player_node) - player_node->setSpeech(gettext(info.text)); + if (localPlayer) + localPlayer->setSpeech(gettext(info.text)); break; } |