summaryrefslogtreecommitdiffstats
path: root/crawl-ref/docs
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-05 08:43:08 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-05 08:43:08 +0000
commit3bc86f82a03f66f402afe45bdfc46312310cc565 (patch)
treecef2dd68f626f8caa63ab3ac87b07393923760ee /crawl-ref/docs
parentee9ef53947fd17b16194459da580c197bf2a7474 (diff)
downloadcrawl-ref-3bc86f82a03f66f402afe45bdfc46312310cc565.tar.gz
crawl-ref-3bc86f82a03f66f402afe45bdfc46312310cc565.zip
Added two new stash options, stash_track_decay and stash_remove_decay. If
stash_track_decay is true then the stash tracker will remember how long it's been since you've seen a rottable object (corpses, skeletons and meat chunks) and tell you its condition by appending "rotten by now", "skeletalised by now" or "gone by now" to its name in the stash menu. If stash_remove_decay is also true then any item that would have been marked "gone by now" is instead removed from the stash tracker. Doesn't yet track decay of potions of blood. Breaks stash save data compatibility. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5485 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/docs')
-rw-r--r--crawl-ref/docs/options_guide.txt14
1 files changed, 13 insertions, 1 deletions
diff --git a/crawl-ref/docs/options_guide.txt b/crawl-ref/docs/options_guide.txt
index 98d5e94395..f2b13e265d 100644
--- a/crawl-ref/docs/options_guide.txt
+++ b/crawl-ref/docs/options_guide.txt
@@ -51,7 +51,8 @@ The contents of this text are:
trap_prompt, rest_wait_both
4-h Stashes.
stash_tracking, stash_filter, annotate_item_class,
- annoate_item_dropped
+ annoate_item_dropped, stash_track_decay,
+ stash_remove_decay
4-i Command Enhancements.
auto_list, easy_open, easy_unequip, easy_confirm,
easy_butcher, always_confirm_butcher, chunks_autopickup,
@@ -882,6 +883,17 @@ annotate_item_dropped = false
init.txt. Annotates dropped items with {dropped} for stash
searching.
+stash_track_decay = false
+ If set to true then the stash tracker will remember how long its
+ been since you've seen chunks of meat or a corpse or skeleton and
+ tell you what state its in by adding "rotten by now",
+ "skeletalised by now" or "gone by now" to its name.
+
+stash_remove_decay = false
+ If both this and stash_track_decay are set to true, anything that
+ would have been reported as "gone by now" will instead be
+ removed from the stash tracker's memory.
+
4-i Command Enhancements.
-----------------------------