summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-17 17:26:46 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-17 17:26:46 +0000
commit4cb403f3211066a2c2e131e824ed50f9a83d9c4a (patch)
tree11fed7ea793ea5ffc06d74f085da37fc8c3eba6f /crawl-ref/source/acr.cc
parent7e4d7e95e692aa3fa32430cd9ddaece5ad96e2fa (diff)
downloadcrawl-ref-4cb403f3211066a2c2e131e824ed50f9a83d9c4a.tar.gz
crawl-ref-4cb403f3211066a2c2e131e824ed50f9a83d9c4a.zip
* Tweak FAQ as suggested in FR 2472030.
* Fix 2515108: stash tracker not being initialized at game start. * Fix 2514024: melded armour hindering melee. * Fix 2512301: =regeneration described as useless for Mummies. * Fix weapon swap prompt when untransforming with monsters in view. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8503 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 35d4856076..fd66426c56 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -4058,6 +4058,13 @@ static bool _initialise(void)
set_cursor_enabled(false);
+ if (Options.stash_tracking && !crawl_state.arena)
+ {
+ StashTrack.update_visible_stashes(
+ Options.stash_tracking == STM_ALL ? StashTracker::ST_AGGRESSIVE
+ : StashTracker::ST_PASSIVE);
+ }
+
// This just puts the view up for the first turn.
viewwindow(true, false);