summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 4481a349a1..42c7243687 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -144,8 +144,8 @@ static void fuzz_detect_creatures(int pow, int *fuzz_radius, int *fuzz_chance)
*fuzz_radius = pow >= 50? 1 : 2;
- // Fuzz chance starts off at 100% and declines to a low of 10% for obscenely
- // powerful castings (pow caps around the 60 mark).
+ // Fuzz chance starts off at 100% and declines to a low of 10% for
+ // obscenely powerful castings (pow caps around the 60 mark).
*fuzz_chance = 100 - 90 * (pow - 1) / 59;
if (*fuzz_chance < 10)
*fuzz_chance = 10;