summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authorDracoOmega <draco_omega@live.com>2014-02-21 22:10:28 -0330
committerSteve Melenchuk <smelenchuk@gmail.com>2014-03-06 09:58:09 -0700
commit3813bf075242519dac1e256daebaa9b143d01bcc (patch)
treeb976bbb8fc3bc90b34347ac8f2bd5933b31b8eda /crawl-ref/source/spl-cast.cc
parente724f9623f701d6d69dd7654707d30e1ed94878a (diff)
downloadcrawl-ref-3813bf075242519dac1e256daebaa9b143d01bcc.tar.gz
crawl-ref-3813bf075242519dac1e256daebaa9b143d01bcc.zip
Remove Demonic Horde
This was neither a popular nor powerful nor especially interesting spell, which was basically 'Call Imp, except a lot more of them'. Making the demons more individually powerful only further steps on the toes of the many other demon summoning spells that already exist, so I think it is fine to simply trim it.
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index c2f4ccba35..33d69dfedb 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1631,8 +1631,11 @@ static spret_type _do_cast(spell_type spell, int powc,
case SPELL_SUMMON_DEMON:
return cast_summon_demon(powc, god, fail);
+#if TAG_MAJOR_VERSION == 34
case SPELL_DEMONIC_HORDE:
- return cast_demonic_horde(powc, god, fail);
+ mpr("Sorry, this spell is gone!");
+ return SPRET_ABORT;
+#endif
case SPELL_SUMMON_GREATER_DEMON:
return cast_summon_greater_demon(powc, god, fail);