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.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 077177ffca..2781d17195 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1457,6 +1457,10 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
cast_summon_ugly_thing(powc, god_gift);
break;
+ case SPELL_SUMMON_DRAGON:
+ cast_summon_dragon(powc, god_gift);
+ break;
+
case SPELL_SUMMON_GUARDIAN:
summon_guardian(powc, god_gift);
break;
@@ -1465,20 +1469,16 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
summon_daeva(powc, god_gift);
break;
- case SPELL_SUMMON_DRAGON:
- cast_summon_dragon(powc, god_gift);
- break;
-
- case SPELL_CONJURE_BALL_LIGHTNING:
- cast_conjure_ball_lightning(powc, god_gift);
- break;
-
case SPELL_TUKIMAS_DANCE:
- // Temporarily turns a wielded weapon into a dancing weapon.
+ // Temporarily turn a wielded weapon into a dancing weapon.
crawl_state.cant_cmd_repeat("You can't repeat Tukima's Dance.");
cast_tukimas_dance(powc, god_gift);
break;
+ case SPELL_CONJURE_BALL_LIGHTNING:
+ cast_conjure_ball_lightning(powc);
+ break;
+
case SPELL_CALL_IMP:
cast_call_imp(powc, god_gift);
break;