From e5e14cbc64c6513c7f9d4e923b4557b523e67b21 Mon Sep 17 00:00:00 2001 From: haranp Date: Fri, 30 Jan 2009 15:15:59 +0000 Subject: 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 --- crawl-ref/source/delay.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/delay.cc') 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; -- cgit v1.2.3-54-g00ecf