summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mtransit.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-01 16:07:21 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-01 16:07:21 +0000
commitfc78d02aee0c39be4fb45b3b640a17f2af18cd45 (patch)
tree8826cfb101f01e3a0d2abe855e8dff8ef2ffc87c /crawl-ref/source/mtransit.cc
parent0645520057d5b630626c5e6ce7bf3099c9500ea1 (diff)
downloadcrawl-ref-fc78d02aee0c39be4fb45b3b640a17f2af18cd45.tar.gz
crawl-ref-fc78d02aee0c39be4fb45b3b640a17f2af18cd45.zip
Added NSUBST.
Should not highlight unvisited stairs in the Vestibule, since travel cache doesn't track visited-ness of Vestibule stairs. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1706 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mtransit.cc')
-rw-r--r--crawl-ref/source/mtransit.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/mtransit.cc b/crawl-ref/source/mtransit.cc
index 01a57917dd..3cab171bc8 100644
--- a/crawl-ref/source/mtransit.cc
+++ b/crawl-ref/source/mtransit.cc
@@ -86,6 +86,10 @@ void place_followers()
static bool place_lost_monster(follower &f)
{
+#ifdef DEBUG_DIAGNOSTICS
+ mprf(MSGCH_DIAGNOSTICS, "Placing lost one: %s",
+ f.mons.name(DESC_PLAIN).c_str());
+#endif
return (f.place(false));
}