summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/message.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/message.cc')
-rw-r--r--crawl-ref/source/message.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/message.cc b/crawl-ref/source/message.cc
index 49a92b0f9d..c09c1056b1 100644
--- a/crawl-ref/source/message.cc
+++ b/crawl-ref/source/message.cc
@@ -273,6 +273,7 @@ int channel_to_colour( msg_channel_type channel, int param )
break;
case MSGCH_TALK:
+ case MSGCH_TALK_VISUAL:
ret = WHITE;
break;
@@ -485,7 +486,8 @@ static void mpr_check_patterns(const std::string& message,
// reusing travel_stop_message here
if (channel != MSGCH_DIAGNOSTICS && channel != MSGCH_EQUIPMENT
- && channel != MSGCH_SOUND && channel != MSGCH_TALK)
+ && channel != MSGCH_TALK && channel != MSGCH_TALK_VISUAL
+ && channel != MSGCH_SOUND)
{
interrupt_activity( AI_MESSAGE, channel_to_str(channel) + ":" + message );
}