summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-14 17:06:12 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-14 17:06:12 +0000
commitabc4280d24bf18defcc91535ea1d80fe113c7c79 (patch)
tree51ed7003de8617d2ae3dfb2f9a58d2a2ad3c2975 /crawl-ref/source/cloud.cc
parent1e578ac60a2efb265ed86eb69f0f39fdc382f5b3 (diff)
downloadcrawl-ref-abc4280d24bf18defcc91535ea1d80fe113c7c79.tar.gz
crawl-ref-abc4280d24bf18defcc91535ea1d80fe113c7c79.zip
Comment fix.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5034 c06c8d41-db1a-0410-9941-cceddc491573
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;