summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-26 22:25:40 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-26 22:25:40 +0000
commit9549a690ec83a9b6e35600407c41292260bb04e6 (patch)
tree55ed1f1349bc25996555bc914d01710f268ae968 /crawl-ref
parent66a209e31bfd3eb70efbf5fd6888e65cea48b181 (diff)
downloadcrawl-ref-9549a690ec83a9b6e35600407c41292260bb04e6.tar.gz
crawl-ref-9549a690ec83a9b6e35600407c41292260bb04e6.zip
Add more comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4684 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/mutation.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index 4b56f338d5..cf53768088 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -1694,7 +1694,7 @@ bool mutate(mutation_type which_mutation, bool failMsg,
// except for demonspawn (or other permamutations) in lichform -- haranp
if (rotting && !demonspawn)
{
- // A god gift overrides an amulet of resist mutation.
+ // God gifts override amulets of resist mutation.
if ((wearing_amulet(AMU_RESIST_MUTATION) ? !one_chance_in(10)
: one_chance_in(3))
&& !god_gift)
@@ -1723,7 +1723,7 @@ bool mutate(mutation_type which_mutation, bool failMsg,
if (!force_mutation)
{
- // A god gift overrides an amulet of resist mutation.
+ // God gifts override amulets of resist mutation.
if ((wearing_amulet(AMU_RESIST_MUTATION) && !one_chance_in(10)
&& !god_gift)
|| you.religion == GOD_ZIN && you.piety > random2(MAX_PIETY)
@@ -1812,7 +1812,7 @@ bool mutate(mutation_type which_mutation, bool failMsg,
}
}
- // This one can be forced by demonspawn or a god gift
+ // This one can be forced by demonspawn or god gifts.
if (mutat == MUT_REGENERATION
&& you.mutation[MUT_SLOW_METABOLISM] > 0 && !god_gift
&& !force_mutation)
@@ -1823,7 +1823,7 @@ bool mutate(mutation_type which_mutation, bool failMsg,
if (mutat == MUT_SLOW_METABOLISM && you.mutation[MUT_REGENERATION] > 0)
return false; // if you have regen, no slow metabolism
- // This one can be forced by demonspawn or a god gift
+ // This one can be forced by demonspawn or god gifts.
if (mutat == MUT_ACUTE_VISION
&& you.mutation[MUT_BLURRY_VISION] > 0 && !god_gift
&& !force_mutation)