summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-08 16:56:49 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-08 16:56:49 +0000
commit1ae58f4e6c97657d8777457da0a78adaa19c6b17 (patch)
tree9743c27e0835aa801219a38095ae21122da3df10 /crawl-ref/source/spl-cast.cc
parent073c543794a6c722916775207213877500167327 (diff)
downloadcrawl-ref-1ae58f4e6c97657d8777457da0a78adaa19c6b17.tar.gz
crawl-ref-1ae58f4e6c97657d8777457da0a78adaa19c6b17.zip
Clean up "Sublimation of Blood" and "Death Channel".
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5599 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 954ca4e4b7..75749cfa09 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1545,10 +1545,18 @@ 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);
+ break;
+
case SPELL_SIMULACRUM:
simulacrum(powc);
break;
+ case SPELL_DEATH_CHANNEL:
+ cast_death_channel(powc);
+ break;
+
case SPELL_OZOCUBUS_ARMOUR:
ice_armour(powc, false);
break;
@@ -1609,10 +1617,6 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
return (SPRET_ABORT);
break;
- case SPELL_SUBLIMATION_OF_BLOOD:
- sublimation(powc);
- break;
-
case SPELL_HELLFIRE:
// Should only be available from:
// staff of Dispater & Sceptre of Asmodeus
@@ -1806,10 +1810,6 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
transform(powc, TRAN_LICH);
break;
- case SPELL_DEATH_CHANNEL:
- cast_death_channel(powc);
- break;
-
case SPELL_SYMBOL_OF_TORMENT:
torment(TORMENT_SPELL, you.x_pos, you.y_pos);
break;