summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index e2a2bf325f..ff66e68eb1 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -877,12 +877,12 @@ bool project_noise(void)
if (!silenced( you.x_pos, you.y_pos ))
{
if (!success)
- mpr("You hear a dull thud.");
+ mpr("You hear a dull thud.", MSGCH_SOUND);
else
{
snprintf( info, INFO_SIZE, "You hear a %svoice call your name.",
(see_grid( plox[0], plox[1] ) ? "distant " : "") );
- mpr( info );
+ mpr( info , MSGCH_SOUND );
}
}
}