summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 9e5367e852..8cf0f47afe 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -873,6 +873,8 @@ void handle_monster_shouts(monsters* monster, bool force)
// Get it once, since monster might be S_RANDOM, in which case
// mons_shouts() will return a different value every time.
+ // Demon lords will insult you as a greeting, but later we'll
+ // choose a random verb and loudness for them.
shout_type s_type = mons_shouts(monster->type, false);
// Silent monsters can give noiseless "visual shouts" if the
@@ -995,7 +997,7 @@ void handle_monster_shouts(monsters* monster, bool force)
}
else if (s_type == S_SILENT && (msg == "" || msg == "__NONE"))
{
- ; // No "visual shout" defined for silent monster, do nothing
+ ; // No "visual shout" defined for silent monster, do nothing.
}
else if (msg == "")
{