summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 3c61fc2aa7..08ee5daeac 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -1006,7 +1006,7 @@ int vampiric_drain(int pow)
dirc:
mpr("Which direction?", MSGCH_PROMPT);
- direction( vmove, DIR_DIR, TARG_ENEMY );
+ direction( vmove, DIR_DIR, TARG_ENEMY, true );
if (!vmove.isValid)
{
@@ -1090,7 +1090,7 @@ char burn_freeze(int pow, char flavour)
while (mgr == NON_MONSTER)
{
mpr("Which direction?", MSGCH_PROMPT);
- direction( bmove, DIR_DIR, TARG_ENEMY );
+ direction( bmove, DIR_DIR, TARG_ENEMY, true );
if (!bmove.isValid)
{
@@ -1190,7 +1190,7 @@ int summon_elemental(int pow, int restricted_type,
{
mpr("Summon from material in which direction?", MSGCH_PROMPT);
- direction( smove, DIR_DIR );
+ direction( smove, DIR_DIR, TARG_ANY, true );
if (!smove.isValid)
{