summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
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;