summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-06 18:34:53 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-06 18:34:53 -0600
commitc03846e3410d492f4da34b585413f43265a12dbb (patch)
tree95be0edd833cfe608bd410c37c84804432976ddb
parent28873b06f55383684e8722c6222624b2acc5e8cf (diff)
downloadcrawl-ref-c03846e3410d492f4da34b585413f43265a12dbb.tar.gz
crawl-ref-c03846e3410d492f4da34b585413f43265a12dbb.zip
Make messages consistent between opening and closing doors.
-rw-r--r--crawl-ref/source/acr.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 84913e1791..0701299fea 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -3436,13 +3436,10 @@ static void _close_door(coord_def move)
if (you.berserk())
{
if (silenced(you.pos()))
- {
mprf("You slam the %s%s shut!", adj, noun);
- }
else
{
- mprf(MSGCH_SOUND,
- "You slam the %s%s shut with an echoing bang!",
+ mprf(MSGCH_SOUND, "You slam the %s%s shut with a bang!",
adj, noun);
noisy(25, you.pos());
}