summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-23 21:15:46 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-23 21:15:46 +0000
commit4f554ed5fab929068133d3f9ff488efed6dd23bb (patch)
treefe5e8b257f67a438236bb86d37a01a3c1f692b37 /crawl-ref/source/initfile.cc
parent6f00e679d1f90041599c50c3cc86ab4e499c9ba1 (diff)
downloadcrawl-ref-4f554ed5fab929068133d3f9ff488efed6dd23bb.tar.gz
crawl-ref-4f554ed5fab929068133d3f9ff488efed6dd23bb.zip
RIP stash_tracking option, always set to all now.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6649 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 503f2911f1..b07a088383 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -2672,14 +2672,7 @@ void game_options::read_option_line(const std::string &str, bool runscript)
else BOOL_OPTION(explore_greedy);
else BOOL_OPTION(explore_improved);
- BOOL_OPTION(trap_prompt);
- else if (key == "stash_tracking")
- {
- stash_tracking =
- field == "dropped" ? STM_DROPPED :
- field == "all" ? STM_ALL :
- STM_EXPLICIT;
- }
+ BOOL_OPTION(trap_prompt);
else if (key == "stash_filter")
{
std::vector<std::string> seg = split_string(",", field);