summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 34f68581..d15c27b3 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -213,7 +213,8 @@ void Being::setPath(const Path &path)
void Being::setSpeech(const std::string &text, int time)
{
- mSpeech = text;
+ // Remove colors
+ mSpeech = removeColors(text);
// Trim whitespace
trim(mSpeech);