summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-07 07:19:18 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-07 07:19:18 +0000
commit4e483ad38133053fb4d37c98fe817da231fb111e (patch)
treee9dce14a8aa30736ab558058d246adb83e8fa634 /crawl-ref/source/acr.cc
parent8f93a07ab1116805fc854207462861e02808d9bb (diff)
downloadcrawl-ref-4e483ad38133053fb4d37c98fe817da231fb111e.tar.gz
crawl-ref-4e483ad38133053fb4d37c98fe817da231fb111e.zip
Fixed maps not loading because monster name cache was initialised only after loading maps, but was being looked up while loading maps.
Removed bad PLACE: that was forcing strawberry fields to appear infallibly on Lair:3. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3018 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 90cc3e91d8..e8f99fe547 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -3460,6 +3460,7 @@ static bool initialise(void)
init_monster_symbols();
init_properties();
init_spell_descs(); // this needs to be way up top {dlb}
+ init_mon_name_cache();
msg::initialise_mpr_streams();
@@ -3493,7 +3494,6 @@ static bool initialise(void)
databaseSystemInit();
init_feat_desc_cache();
- init_mon_name_cache();
init_spell_name_cache();
init_item_name_cache();