summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-03 23:53:53 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-03 23:53:53 +0000
commit9cb75b706542bbc4043437f25a5e35dbfd99656e (patch)
tree524d1ddde869e346865632d76673eccefdb041c7 /crawl-ref/source/initfile.cc
parent973e167e60d8c6dac9d4dc3c5bfc46afd36f0a01 (diff)
downloadcrawl-ref-9cb75b706542bbc4043437f25a5e35dbfd99656e.tar.gz
crawl-ref-9cb75b706542bbc4043437f25a5e35dbfd99656e.zip
FR 1971637: make "stash_track_decay = true" and "stash_remove_decay = true"
the hardcoded behaviour and remove the options, meaning that rotted-away flesh chunks will always be removed from the stash tracker. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6377 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 9127da00d7..2d8ec1b2ce 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -743,9 +743,6 @@ void game_options::reset_options()
stash_tracking = STM_ALL;
- stash_track_decay = false;
- stash_remove_decay = false;
-
explore_stop = ES_ITEM | ES_STAIR | ES_PORTAL | ES_SHOP | ES_ALTAR
| ES_GREEDY_PICKUP;
@@ -2595,8 +2592,6 @@ void game_options::read_option_line(const std::string &str, bool runscript)
field == "all" ? STM_ALL :
STM_EXPLICIT;
}
- else BOOL_OPTION(stash_track_decay);
- else BOOL_OPTION(stash_remove_decay);
else if (key == "stash_filter")
{
std::vector<std::string> seg = split_string(",", field);