summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 23:48:51 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 23:48:51 +0000
commitf1fb993ef0bf1075ad81a3a491109cdaa65e110b (patch)
tree2666d246d1085145f6b9cc3096524b815a5274ff
parent5e33fad9c14df165b32f3682af4b36b3db13c927 (diff)
downloadcrawl-ref-f1fb993ef0bf1075ad81a3a491109cdaa65e110b.tar.gz
crawl-ref-f1fb993ef0bf1075ad81a3a491109cdaa65e110b.zip
Comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5717 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/beam.cc2
-rw-r--r--crawl-ref/source/spl-cast.cc6
2 files changed, 3 insertions, 5 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index d5110b9a20..6660690c8e 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -3442,8 +3442,6 @@ static void _affect_place_explosion_clouds(bolt &beam, int x, int y)
place_cloud( CLOUD_FIRE, x, y, duration, _whose_kill(beam) );
- // God gift exception: A fire vortex is a natural phenomenon
- // treated as a monster, so don't mark it as a god gift.
if (grd[x][y] == DNGN_FLOOR && mgrd[x][y] == NON_MONSTER
&& one_chance_in(4))
{
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index b6617d6779..6759fa9e77 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1419,7 +1419,7 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
// Summoning spells, and other spells that create new monsters.
// If a god is making you cast one of these spells, any monsters
- // produced (with a few exceptions) will count as god gifts.
+ // produced will count as god gifts.
case SPELL_SUMMON_BUTTERFLIES:
cast_summon_butterflies(powc, god_gift);
break;
@@ -3709,8 +3709,8 @@ static void _miscast_poison(int severity, const char* cause)
// force_effect: This forces a certain severity of effect to occur. It
// can be disabled by being set to 100.
//
-// If a god is making you miscast, any monsters produced (with a few
-// exceptions) will count as god gifts.
+// If a god is making you miscast, any monsters produced will count as
+// god gifts.
void miscast_effect(unsigned int sp_type, int mag_pow, int mag_fail,
int force_effect, const char *cause)
{