From a8d638664c1066411b026ca06838b169984e078d Mon Sep 17 00:00:00 2001 From: dolorous Date: Sun, 8 Jun 2008 19:47:40 +0000 Subject: Reorganize again, and move cast_summon_wraiths() to spells3.cc, since it's a necromantic spell. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5604 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/spl-cast.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'crawl-ref/source/spl-cast.cc') diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc index 18f92098bf..f30d9365df 100644 --- a/crawl-ref/source/spl-cast.cc +++ b/crawl-ref/source/spl-cast.cc @@ -1516,10 +1516,6 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail) cast_summon_greater_demon(powc); break; - case SPELL_SUMMON_WRAITHS: - cast_summon_wraiths(powc); - break; - case SPELL_SUMMON_GUARDIAN: summon_guardian(powc); break; @@ -1541,16 +1537,16 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail) dancing_weapon(powc); break; - case SPELL_SUBLIMATION_OF_BLOOD: - cast_sublimation_of_blood(powc); + case SPELL_SUMMON_HORRIBLE_THINGS: + cast_summon_horrible_things(powc); break; case SPELL_SIMULACRUM: - simulacrum(powc); + cast_simulacrum(powc); break; - case SPELL_SUMMON_HORRIBLE_THINGS: - summon_horrible_things(powc); + case SPELL_SUMMON_WRAITHS: + cast_summon_wraiths(powc); break; case SPELL_DEATH_CHANNEL: @@ -1617,6 +1613,10 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail) return (SPRET_ABORT); break; + case SPELL_SUBLIMATION_OF_BLOOD: + cast_sublimation_of_blood(powc); + break; + case SPELL_HELLFIRE: // Should only be available from: // staff of Dispater & Sceptre of Asmodeus -- cgit v1.2.3-54-g00ecf