summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/cloud.cc')
-rw-r--r--crawl-ref/source/cloud.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/cloud.cc b/crawl-ref/source/cloud.cc
index f98eabe7aa..182ce92ae1 100644
--- a/crawl-ref/source/cloud.cc
+++ b/crawl-ref/source/cloud.cc
@@ -67,7 +67,7 @@ static void place_new_cloud(cloud_type cltype, int x, int y, int decay,
// find slot for cloud
for (int ci = 0; ci < MAX_CLOUDS; ci++)
{
- if (env.cloud[ci].type == CLOUD_NONE) // ie is empty
+ if (env.cloud[ci].type == CLOUD_NONE) // i.e., is empty
{
new_cloud( ci, cltype, x, y, decay, whose, spread_rate );
break;