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.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 9a8be9dde2..744f72cb0a 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -1605,6 +1605,8 @@ int game_options::read_explore_stop_conditions(const std::string &field) const
conditions |= ES_GREEDY_PICKUP;
else if (c == "greedy_pickup_smart" || c == "greedy pickup smart")
conditions |= ES_GREEDY_PICKUP_SMART;
+ else if (c == "greedy_pickup_thrown" || c == "greedy pickup thrown")
+ conditions |= ES_GREEDY_PICKUP_THROWN;
else if (c == "shop" || c == "shops")
conditions |= ES_SHOP;
else if (c == "stair" || c == "stairs")