summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 839999312..a30693d19 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -60,6 +60,7 @@
#include "resources/resourcemanager.h"
#include "gui/widgets/chattab.h"
+#include "gui/widgets/langtab.h"
#include "utils/gettext.h"
@@ -440,11 +441,18 @@ void Being::setPath(const Path &path)
}
}
-void Being::setSpeech(const std::string &text, int time)
+void Being::setSpeech(const std::string &text, const std::string &channel,
+ int time)
{
if (!userPalette)
return;
+ if (!channel.empty() && (langChatTab && langChatTab->getChannelName()
+ != channel))
+ {
+ return;
+ }
+
// Remove colors
mSpeech = removeColors(text);