From 300c2888605863ceb8f5345f2cdfba646833e7ed Mon Sep 17 00:00:00 2001 From: dshaligram Date: Fri, 1 Dec 2006 15:23:51 +0000 Subject: Minor tweaks to greedy-explore: * Don't make overly fine GREEDY_PICKUP distinction. * GREEDY_PICKUP always interrupts explore. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@539 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/initfile.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/initfile.cc') diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc index 19fbf8cae9..c87f7265be 100644 --- a/crawl-ref/source/initfile.cc +++ b/crawl-ref/source/initfile.cc @@ -623,11 +623,12 @@ void game_options::reset_options() stash_tracking = STM_ALL; - explore_stop = ES_ITEM | ES_STAIR | ES_SHOP | ES_ALTAR; + explore_stop = ES_ITEM | ES_STAIR | ES_SHOP | ES_ALTAR + | ES_GREEDY_PICKUP; // The prompt conditions will be combined into explore_stop after // reading options. - explore_stop_prompt = ES_GREEDY_PICKUP; + explore_stop_prompt = ES_NONE; safe_zero_exp = true; target_zero_exp = false; -- cgit v1.2.3-54-g00ecf