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:41:20 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-08 16:41:20 +0000
commit073c543794a6c722916775207213877500167327 (patch)
tree34ca8101ffe5c5ff7cd64ce857aba1698315bd81 /crawl-ref/source/spl-cast.cc
parent220cc50e053ae2c95299fc59426dbfe535eb46d3 (diff)
downloadcrawl-ref-073c543794a6c722916775207213877500167327.tar.gz
crawl-ref-073c543794a6c722916775207213877500167327.zip
Clean up "Simulacrum".
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5598 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 d836d841da..954ca4e4b7 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1540,6 +1540,15 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
cast_conjure_ball_lightning(powc);
break;
+ case SPELL_TUKIMAS_DANCE:
+ crawl_state.cant_cmd_repeat("You can't repeat dancing weapon.");
+ dancing_weapon(powc);
+ break;
+
+ case SPELL_SIMULACRUM:
+ simulacrum(powc);
+ break;
+
case SPELL_OZOCUBUS_ARMOUR:
ice_armour(powc, false);
break;
@@ -1604,11 +1613,6 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
sublimation(powc);
break;
- case SPELL_TUKIMAS_DANCE:
- crawl_state.cant_cmd_repeat("You can't repeat dancing weapon.");
- dancing_weapon(powc);
- break;
-
case SPELL_HELLFIRE:
// Should only be available from:
// staff of Dispater & Sceptre of Asmodeus
@@ -1977,10 +1981,6 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
cast_stoneskin(powc);
break;
- case SPELL_SIMULACRUM:
- simulacrum(powc);
- break;
-
case SPELL_CHAIN_LIGHTNING:
cast_chain_lightning(powc);
break;