summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stash.cc
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2014-01-23 19:46:39 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-01-24 13:26:52 +0000
commit81aee59235ac630e21fad2f056bdd82b23943ad2 (patch)
treec6c791f57fe94d380b2c0bc8b2cfb9d26cf495eb /crawl-ref/source/stash.cc
parentb79a34a563ec8c66826594634a1d9dd95e637fb7 (diff)
downloadcrawl-ref-81aee59235ac630e21fad2f056bdd82b23943ad2.tar.gz
crawl-ref-81aee59235ac630e21fad2f056bdd82b23943ad2.zip
Change defaults of show_as_stacks and filter_useless in Ctrl-F
show_as_stacks used to hide some items behind rather unintuitive parens, and this has come up as actual problem more than once. filter_useless on the other hand used to spam you with many mostly irrelevant items and similarly suffered from the weird help line. The new settings are: show_as_stacks = false, filter_useless = true.
Diffstat (limited to 'crawl-ref/source/stash.cc')
-rw-r--r--crawl-ref/source/stash.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/stash.cc b/crawl-ref/source/stash.cc
index ed417da2ce..a913640f9b 100644
--- a/crawl-ref/source/stash.cc
+++ b/crawl-ref/source/stash.cc
@@ -1805,8 +1805,8 @@ void StashTracker::search_stashes()
}
bool sort_by_dist = true;
- bool show_as_stacks = true;
- bool filter_useless = false;
+ bool show_as_stacks = false;
+ bool filter_useless = true;
bool default_execute = true;
while (true)
{