summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 18:34:37 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 18:34:37 +0000
commit567cf0316aef7e75f8d7f9306b897f12c5b9f4e7 (patch)
tree8da51ac6b259cf093a547a915f359f3445569717 /crawl-ref/source/spl-cast.cc
parentb3c42dfc728a757d6d9aff1f0df86e4152141da1 (diff)
downloadcrawl-ref-567cf0316aef7e75f8d7f9306b897f12c5b9f4e7.tar.gz
crawl-ref-567cf0316aef7e75f8d7f9306b897f12c5b9f4e7.zip
Reorganize again.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5707 c06c8d41-db1a-0410-9941-cceddc491573
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;