summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/decks.cc
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2009-10-06 22:27:07 -0400
committerCharles Otto <ottochar@gmail.com>2009-10-06 22:31:25 -0400
commitc2c25b5eaa191b0d26aee47359949093367154b9 (patch)
tree6ac6a73ff6053f17fce2e66e8e441978c2729d36 /crawl-ref/source/decks.cc
parent0e2154d50e2de944bb1495b6ad4a62112ee97f03 (diff)
downloadcrawl-ref-c2c25b5eaa191b0d26aee47359949093367154b9.tar.gz
crawl-ref-c2c25b5eaa191b0d26aee47359949093367154b9.zip
Implement FR 2872334 'don't auto-target neutrals' by replacing most uses of TARG_ENEMY with TARG_HOSTILE.
Diffstat (limited to 'crawl-ref/source/decks.cc')
-rw-r--r--crawl-ref/source/decks.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index aec23dc2a0..190cf60ad3 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -1801,7 +1801,7 @@ static bool _damaging_card(card_type card, int power, deck_rarity_type rarity)
bolt beam;
beam.range = LOS_RADIUS;
- if (spell_direction(target, beam, DIR_NONE, TARG_ENEMY,
+ if (spell_direction(target, beam, DIR_NONE, TARG_HOSTILE,
LOS_RADIUS, true, true, false, info)
&& player_tracer(ZAP_DEBUGGING_RAY, power/4, beam))
{