summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-06 05:52:14 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-06 05:52:14 +0000
commitbc80cb35bd115a2b039d5531df5480a4f7d2631b (patch)
tree70e317bf229eb4ae6d8bed561e0ab2b2c2f27be7 /crawl-ref/source/initfile.cc
parent4b9d037c9fe47293bc079a8aaa8f86c9e08206ee (diff)
downloadcrawl-ref-bc80cb35bd115a2b039d5531df5480a4f7d2631b.tar.gz
crawl-ref-bc80cb35bd115a2b039d5531df5480a4f7d2631b.zip
[1628932] Fixed fire_items_start bugginess - the field should not be lowercased.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@792 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 0054550a91..c4923c1ef7 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -1280,10 +1280,10 @@ void game_options::read_option_line(const std::string &str, bool runscript)
&& key != "stop_travel" && key != "sound"
&& key != "travel_stop_message"
&& key != "drop_filter" && key != "lua_file"
- && key != "note_items" && key != "autoinscribe"
- && key != "note_monsters" && key != "note_messages"
+ && key != "note_items" && key != "autoinscribe"
+ && key != "note_monsters" && key != "note_messages"
&& key.find("cset") != 0 && key != "dungeon"
- && key != "feature")
+ && key != "feature" && key != "fire_items_start")
{
tolower_string( field );
}