summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 03:21:09 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 03:21:09 +0000
commit4e07ba04748356b9e65d49af5a8a6188cfd8e8f1 (patch)
tree57730418b8d1ffa4fb05346efcd4c8cc405ce2bb /crawl-ref/source/spl-cast.cc
parent61fe06704bcf2cc07361fb32ba65f57bc585c0ed (diff)
downloadcrawl-ref-4e07ba04748356b9e65d49af5a8a6188cfd8e8f1.tar.gz
crawl-ref-4e07ba04748356b9e65d49af5a8a6188cfd8e8f1.zip
Clarify comments.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5634 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 162d6c8f2b..623b134ae4 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1434,8 +1434,8 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
return (SPRET_ABORT);
break;
- // Summoning spells. If a god is making you cast one of these
- // spells, any creature(s) produced will be counted as god gifts.
+ // Spells that create new monsters. If a god is making you cast one
+ // of these spells, any monsters produced will count as god gifts.
case SPELL_SUMMON_BUTTERFLIES:
cast_summon_butterflies(powc, crawl_state.is_god_acting());
break;
@@ -1545,7 +1545,7 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
case SPELL_DEATH_CHANNEL:
cast_death_channel(powc, crawl_state.is_god_acting());
break;
- // End of summoning spells.
+ // End of spells that create new monsters.
case SPELL_OZOCUBUS_ARMOUR:
ice_armour(powc, false);