summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-17 21:28:12 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-17 21:28:12 +0000
commitce9f50e78b9bf225a0e9960ad87e03ac78bb5dde (patch)
tree2a8e00e932076d4f8cdfa8987a933724000ebae6
parentd82ee4ebd849c7bfebb8d9998604e63767849efb (diff)
downloadcrawl-ref-ce9f50e78b9bf225a0e9960ad87e03ac78bb5dde.tar.gz
crawl-ref-ce9f50e78b9bf225a0e9960ad87e03ac78bb5dde.zip
Horrible bug from r1477 fixed. Oops.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1478 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/files.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index cba3fc8936..8993b67efb 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -852,7 +852,7 @@ static void clear_clouds()
delete_cloud( clouty );
for (int i = 0; i < GXM; i++)
for (int j = 0; j < GYM; j++)
- ASSERT(env.cgrid[i][j] == EMPTY_CLOUD);
+ env.cgrid[i][j] = EMPTY_CLOUD;
}
static void grab_followers(std::vector<follower>& followers)