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.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index d5ef24f202..9f5cfc51c3 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -523,6 +523,7 @@ void reset_options(bool clear_name)
Options.note_hp_percent = 0;
Options.ood_interesting = 8;
Options.terse_hand = true;
+ Options.increasing_skill_progress = false;
Options.auto_list = false;
Options.delay_message_clear = false;
Options.pickup_dropped = true;
@@ -1515,6 +1516,10 @@ void parse_option_line(const std::string &str, bool runscript)
{
Options.terse_hand = read_bool( field, Options.terse_hand );
}
+ else if (key == "increasing_skill_progress")
+ {
+ Options.increasing_skill_progress = read_bool( field, Options.increasing_skill_progress );
+ }
else if (key == "flush")
{
if (subkey == "failure")