From bc80cb35bd115a2b039d5531df5480a4f7d2631b Mon Sep 17 00:00:00 2001 From: dshaligram Date: Sat, 6 Jan 2007 05:52:14 +0000 Subject: [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 --- crawl-ref/source/initfile.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/initfile.cc') 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 ); } -- cgit v1.2.3-54-g00ecf