From 8df9960b2b34f903658b041751ef4a8c47338c10 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Wed, 30 May 2007 16:47:03 +0000 Subject: default_target defaults to true (David). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1493 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/docs/crawl_options.txt | 13 ++++++++----- crawl-ref/init.txt | 2 +- crawl-ref/source/initfile.cc | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/crawl-ref/docs/crawl_options.txt b/crawl-ref/docs/crawl_options.txt index d951327f36..4d4a4fb0f4 100644 --- a/crawl-ref/docs/crawl_options.txt +++ b/crawl-ref/docs/crawl_options.txt @@ -372,11 +372,14 @@ confirm_self_target = true selecting the character as the target of a non-friendly-targeted spell (i.e., something other than haste, healing or invisibility.) -default_target = false - If set to true, targeting will start on either your previous target - (if it is still visible) or the closest monster (if not) rather - than on the character. If no monsters are in view, targeting will - start on the character regardless. +default_target = true + If set to true (the default), targeting will start on either + your previous target (if it is still visible) or the closest + monster (if not) rather than on the character. If no monsters + are in view, targeting will start on the character regardless. + + If default_target = false, the targeting cursor will always start + aimed at the character. target_unshifted_dirs = false If set to true, targeting will use the old Stone Soup 0.1 / Crawl 4.0 diff --git a/crawl-ref/init.txt b/crawl-ref/init.txt index 763265d4e7..75209994f8 100644 --- a/crawl-ref/init.txt +++ b/crawl-ref/init.txt @@ -87,7 +87,7 @@ lua_file = lua/trapwalk.lua # target_oos = false # target_los_first = false # confirm_self_target = false -# default_target = true +# default_target = false # target_unshifted_dirs = true ##### 4-c Passive Sightings ##################### diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc index d10f5ccde0..81787d8cd8 100644 --- a/crawl-ref/source/initfile.cc +++ b/crawl-ref/source/initfile.cc @@ -596,7 +596,7 @@ void game_options::reset_options() hp_warning = 10; magic_point_warning = 0; confirm_self_target = true; - default_target = false; + default_target = true; safe_autopickup = true; autopickup_no_burden = false; use_notes = true; -- cgit v1.2.3-54-g00ecf