summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-09 02:54:48 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-09 02:54:48 +0000
commitbfaafec2ca792494e1f70bcfd5a4c398fa18461f (patch)
tree3c3264d4626b27f23ac82510c160a79cf6e2f039 /crawl-ref/source/spells2.cc
parenta51b379cf90efdba43f55e35d7c27d05344f8025 (diff)
downloadcrawl-ref-bfaafec2ca792494e1f70bcfd5a4c398fa18461f.tar.gz
crawl-ref-bfaafec2ca792494e1f70bcfd5a4c398fa18461f.zip
Comment fix.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4942 c06c8d41-db1a-0410-9941-cceddc491573
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;