summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index 2d177bcdf4..254f3fc7f0 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -2107,14 +2107,14 @@ bool forget_inventory(bool quiet)
return (items_forgotten > 0);
}
-// returns true if there was a visible change
+// Returns true if there was a visible change.
bool vitrify_area(int radius)
{
if (radius < 2)
return (false);
const int radius2 = radius * radius;
- // this hinges on clear wall types having the same order as non-clear ones
+ // This hinges on clear wall types having the same order as non-clear ones!
const int clear_plus = DNGN_CLEAR_ROCK_WALL - DNGN_ROCK_WALL;
bool something_happened = false;
for ( int x = X_BOUND_1; x <= X_BOUND_2; ++x )