summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-14 17:43:13 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-14 17:43:13 +0000
commit5c24925f58d47b33b39a15c018c316b0b26fbd1c (patch)
treed72cb6864c83e2759f49b0b902f0ca2e1d7c5cb5 /crawl-ref/source/spl-cast.cc
parentdfe6cae403c98140e69f6edd5f1c72df875b04be (diff)
downloadcrawl-ref-5c24925f58d47b33b39a15c018c316b0b26fbd1c.tar.gz
crawl-ref-5c24925f58d47b33b39a15c018c316b0b26fbd1c.zip
Fix [2598159]: conjure flame not respecting range limits.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9068 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 9978a36f5e..c89396b689 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -2091,7 +2091,7 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
break;
case SPELL_CONJURE_FLAME:
- if (!conjure_flame(powc))
+ if (!conjure_flame(powc, beam.target))
return (SPRET_ABORT);
break;