summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-30 15:15:59 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-30 15:15:59 +0000
commite5e14cbc64c6513c7f9d4e923b4557b523e67b21 (patch)
tree8d013d16586f01368fdd6c33b49d3c579066bd05 /crawl-ref/source/delay.cc
parent464e945f78e101802a8784636afa07a45c3b38b9 (diff)
downloadcrawl-ref-e5e14cbc64c6513c7f9d4e923b4557b523e67b21.tar.gz
crawl-ref-e5e14cbc64c6513c7f9d4e923b4557b523e67b21.zip
Give an informative message when stair delays are cancelled.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8855 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/delay.cc')
-rw-r--r--crawl-ref/source/delay.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index 543f81492d..276ee762e4 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -506,9 +506,9 @@ void stop_delay( bool stop_stair_travel )
case DELAY_DESCENDING_STAIRS: // short... and probably what people want
if (stop_stair_travel)
{
-#ifdef DEBUG_DIAGNOSTICS
- mpr("Stop ascending/descending stairs.", MSGCH_DIAGNOSTICS);
-#endif
+ mprf("You stop %s the stairs.",
+ delay.type == DELAY_ASCENDING_STAIRS ? "ascending"
+ : "descending");
_pop_delay();
}
break;