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.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 6ff81347ca..921816e5b0 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1334,10 +1334,6 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
detect_curse(false);
break;
- case SPELL_SUMMON_SMALL_MAMMALS:
- summon_small_mammals(powc); //jmf: hmm, that's definitely *plural* ;-)
- break;
-
case SPELL_ABJURATION_I:
case SPELL_ABJURATION_II:
abjuration(powc);
@@ -1476,6 +1472,10 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
cast_summon_butterflies(powc);
break;
+ case SPELL_SUMMON_SMALL_MAMMALS:
+ cast_summon_small_mammals(powc);
+ break;
+
case SPELL_SUMMON_SCORPIONS:
cast_summon_scorpions(powc);
break;