summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-10-04 17:47:41 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-10-04 17:47:41 +0000
commit6f2a50cffaccd8af991a513f2453506ade0cf140 (patch)
treebf0e6bee72703b8b0191918a915b19bfb7776561 /crawl-ref/source/initfile.cc
parentee41fac914eff2328d03b10c2bd2b1f4d2d03dbc (diff)
downloadcrawl-ref-6f2a50cffaccd8af991a513f2453506ade0cf140.tar.gz
crawl-ref-6f2a50cffaccd8af991a513f2453506ade0cf140.zip
Changed '!' in targeting from target-select to target-select-ignoring-range.
Added '@', which is to '!' as '.' is to the old '5'. Fixed 2146628: cancelling targeting was incorrectly checking range. The behaviour of allow_self_target is now slightly different (see forthcoming mail on crawl-ref-discuss.) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7128 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 12b3f47370..4dfaf1ac3e 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -2036,7 +2036,6 @@ void game_options::read_option_line(const std::string &str, bool runscript)
else if (field == "safe")
easy_confirm = CONFIRM_SAFE_EASY;
}
- else BOOL_OPTION(easy_quit_item_prompts);
else if (key == "allow_self_target")
{
if (field == "yes")
@@ -2046,6 +2045,7 @@ void game_options::read_option_line(const std::string &str, bool runscript)
else if (field == "prompt")
allow_self_target = CONFIRM_PROMPT;
}
+ else BOOL_OPTION(easy_quit_item_prompts);
else BOOL_OPTION_NAMED("easy_quit_item_lists", easy_quit_item_prompts);
else BOOL_OPTION(easy_open);
else BOOL_OPTION(easy_unequip);