From bfaafec2ca792494e1f70bcfd5a4c398fa18461f Mon Sep 17 00:00:00 2001 From: dolorous Date: Fri, 9 May 2008 02:54:48 +0000 Subject: Comment fix. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4942 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/spells2.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/spells2.cc') 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; -- cgit v1.2.3-54-g00ecf