summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-30 16:03:40 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-30 16:03:40 +0000
commit65d21560291f113bca7f16dc6fc2bfc4929d7218 (patch)
tree0ba9c18de0cc0cbdf2fede11cb6d9ac79dfcfa45 /crawl-ref/source/travel.cc
parent55585681615a40eb8fb65adb1dc297bd6aaa5a71 (diff)
downloadcrawl-ref-65d21560291f113bca7f16dc6fc2bfc4929d7218.tar.gz
crawl-ref-65d21560291f113bca7f16dc6fc2bfc4929d7218.zip
Handle zombies and other monster modifiers correctly in notes.
When advising the user that greedy explore won't work, make sure they see the message. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@745 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/travel.cc')
-rw-r--r--crawl-ref/source/travel.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index e2af8832df..cc3f1e4ab6 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -2245,7 +2245,9 @@ void start_explore(bool grab_items)
if (you.running == RMODE_EXPLORE_GREEDY
&& Options.stash_tracking != STM_ALL)
{
- mpr("Explore + pickup is available only if stash_tracking = all");
+ Options.explore_greedy = false;
+ mpr("Greedy explore is available only if stash_tracking = all");
+ more();
you.running = RMODE_EXPLORE;
}