summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authorDracoOmega <draco_omega@live.com>2014-02-22 04:04:55 -0330
committerSteve Melenchuk <smelenchuk@gmail.com>2014-03-06 09:58:09 -0700
commitf26fde6e9db971d06053ca1ca46445848bd3fee4 (patch)
tree71acaf863e914bbf7179689835bd1cace0340901 /crawl-ref/source/spl-cast.cc
parent319cca669da9fa102192cb827878b74eecad1ee3 (diff)
downloadcrawl-ref-f26fde6e9db971d06053ca1ca46445848bd3fee4.tar.gz
crawl-ref-f26fde6e9db971d06053ca1ca46445848bd3fee4.zip
Replace Mass Abjuration with Aura of Abjuration
Mass Abjuration was never an especially popular spell at level 6, but the recent changes which cause summons to be automatically abjured upon their caster's death renders its usefulness considerably lower. This experimental change is aimed at making the spell more appealing given how readily available this faux-mass-abjuration already is to everyone. Aura of Abjuration causes the caster to continuously perform a lower power version of Mass Abjuration each turn for a reasonably long duration, sending new summons away shortly after they arrive (given sufficient power). This version could even be a useful pre-cast option for battles with summon-focused enemies and provides tactical options which old Mass Abjuration did not, and might give the spell some play in the current environment.
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 33d69dfedb..afa0d35495 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1701,8 +1701,8 @@ static spret_type _do_cast(spell_type spell, int powc,
case SPELL_ABJURATION:
return cast_abjuration(powc, beam.target, fail);
- case SPELL_MASS_ABJURATION:
- return cast_mass_abjuration(powc, fail);
+ case SPELL_AURA_OF_ABJURATION:
+ return cast_aura_of_abjuration(powc, fail);
case SPELL_WEAVE_SHADOWS:
{