summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-08-12 10:33:27 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-08-12 10:33:27 +0000
commit6ca3547c0ecc01c06b930f7c0bea23171cb45b2e (patch)
tree1f62a24c6bcc00caf0cce7c4c2f971b010edf084 /crawl-ref/source/directn.cc
parent964dc6d60780f90a6f890facbeff43eaae83be57 (diff)
downloadcrawl-ref-6ca3547c0ecc01c06b930f7c0bea23171cb45b2e.tar.gz
crawl-ref-6ca3547c0ecc01c06b930f7c0bea23171cb45b2e.zip
Backport a number of small fixes and improvements, among others:
* display for silenced grids * mummy monsters drinking potions * stationary monsters floundering in shallow water * replacing post-explosion more() with delay(150) * fixing debug armour acquirement statistics * DS Troggies don't get Channeling anymore git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.5@10522 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index fad93b9af9..f5fdee5767 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -3411,7 +3411,12 @@ static void _describe_cell(const coord_def& where, bool in_range)
#endif
if (is_sanctuary(where))
- mpr("This square lies inside a sanctuary.");
+ {
+ mprf("This square lies inside a sanctuary%s.",
+ silenced(where) ? ", and is shrouded in silence" : "");
+ }
+ else if (silenced(where))
+ mpr("This square is shrouded in silence.");
if (env.cgrid(where) != EMPTY_CLOUD)
{