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.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 7cfcbe5c3e..e58c5318e1 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -711,6 +711,9 @@ void game_options::reset_options()
travel_stair_cost = 500;
arena_delay = 600;
+ arena_dump_msgs = false;
+ arena_dump_msgs_all = false;
+ arena_list_eq = false;
// Sort only pickup menus by default.
sort_menus.clear();
@@ -3067,6 +3070,10 @@ void game_options::read_option_line(const std::string &str, bool runscript)
else
constants.insert(field);
}
+ else INT_OPTION(arena_delay, 1, INT_MAX);
+ else BOOL_OPTION(arena_dump_msgs);
+ else BOOL_OPTION(arena_dump_msgs_all);
+ else BOOL_OPTION(arena_list_eq);
// Catch-all else, copies option into map
else if (runscript)