summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-30 07:22:41 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-30 07:22:41 +0000
commit44e703fb80e56940f4efc93d01db2988fd4914c3 (patch)
tree4ba00a87fe91df494f3563dd315194ccc6357830 /crawl-ref/source/cloud.cc
parentdfad9aff3cf95f92c62237f590408dfc7a5b5c02 (diff)
downloadcrawl-ref-44e703fb80e56940f4efc93d01db2988fd4914c3.tar.gz
crawl-ref-44e703fb80e56940f4efc93d01db2988fd4914c3.zip
Fix evaporate trailing clouds before explosion (sorear).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6729 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/cloud.cc')
-rw-r--r--crawl-ref/source/cloud.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/cloud.cc b/crawl-ref/source/cloud.cc
index a0f5b180df..54348db5f0 100644
--- a/crawl-ref/source/cloud.cc
+++ b/crawl-ref/source/cloud.cc
@@ -124,7 +124,7 @@ static int _spread_cloud(const cloud_struct &cloud)
int newdecay = cloud.decay / 2 + 1;
if (newdecay >= cloud.decay)
newdecay = cloud.decay - 1;
-
+
_place_new_cloud( cloud.type, *ai, newdecay, cloud.whose, cloud.killer,
cloud.spread_rate );
@@ -951,4 +951,3 @@ fog_machine_data fogs_lab_type(int level_number)
return data;
}
-