summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 5e66290cc5..9a8242cef9 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -684,6 +684,8 @@ void game_options::reset_options()
explore_item_greed = 10;
explore_greedy = false;
+
+ explore_improved = false;
target_zero_exp = false;
target_wrap = true;
@@ -2412,6 +2414,10 @@ void game_options::read_option_line(const std::string &str, bool runscript)
{
explore_greedy = read_bool(field, explore_greedy);
}
+ else if (key == "explore_improved")
+ {
+ explore_improved = read_bool(field, explore_improved);
+ }
else if (key == "stash_tracking")
{
stash_tracking =