From 65d21560291f113bca7f16dc6fc2bfc4929d7218 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Sat, 30 Dec 2006 16:03:40 +0000 Subject: 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 --- crawl-ref/source/travel.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/travel.cc') 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; } -- cgit v1.2.3-54-g00ecf