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.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index a21f306a7c..1eda3233f1 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -1509,6 +1509,14 @@ int game_options::read_explore_stop_conditions(const std::string &field) const
conditions |= ES_ALTAR;
else if (c == "greedy_item" || c == "greedy_items")
conditions |= ES_GREEDY_ITEM;
+ else if (c == "glowing" || c == "glowing_item"
+ || c == "glowing_items")
+ conditions |= ES_GLOWING_ITEM;
+ else if (c == "artefact" || c == "artefacts"
+ || c == "artifact" || c == "artifacts")
+ conditions |= ES_ARTEFACT;
+ else if (c == "rune" || c == "runes")
+ conditions |= ES_RUNE;
}
return (conditions);
}