summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/direct.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/direct.cc')
-rw-r--r--crawl-ref/source/direct.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc
index 535f93965c..6bdd6f3200 100644
--- a/crawl-ref/source/direct.cc
+++ b/crawl-ref/source/direct.cc
@@ -332,7 +332,7 @@ static void direction_again(dist& moves, targeting_type restricts,
moves.ty = you.y_pos;
// Discard 'Y' player gave to yesno()
- if (mode == TARG_ENEMY && Options.confirm_self_target)
+ if (mode == TARG_ENEMY)
getchm();
}
else
@@ -822,7 +822,7 @@ void direction(dist& moves, targeting_type restricts,
// Conceivably we might want to confirm on TARG_ANY too.
if ( moves.isTarget &&
moves.tx == you.x_pos && moves.ty == you.y_pos &&
- mode == TARG_ENEMY && Options.confirm_self_target &&
+ mode == TARG_ENEMY &&
!yesno("Really target yourself?", false, 'n'))
{
mesclr();