summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/show.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-04-28 15:55:58 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2014-05-07 18:23:26 -0600
commitdeb4de3a7a4bf8a603442e3d7d6572eb8b2e91b9 (patch)
treec28e2e35aeb564be650e35181c6b83c25da3d476 /crawl-ref/source/show.cc
parent501de5b581ac485a95f908ce657aafac33552644 (diff)
downloadcrawl-ref-deb4de3a7a4bf8a603442e3d7d6572eb8b2e91b9.tar.gz
crawl-ref-deb4de3a7a4bf8a603442e3d7d6572eb8b2e91b9.zip
Allow Qazlalites to displace their own clouds.
Should address some of the residual autoexplore issues.
Diffstat (limited to 'crawl-ref/source/show.cc')
-rw-r--r--crawl-ref/source/show.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/show.cc b/crawl-ref/source/show.cc
index 2dff3da4e2..2de30c46ca 100644
--- a/crawl-ref/source/show.cc
+++ b/crawl-ref/source/show.cc
@@ -297,7 +297,8 @@ static void _update_cloud(int cloudno)
else if (dur > 3)
dur = 3;
- cloud_info ci(cloud.type, get_cloud_colour(cloudno), dur, ch, gp);
+ cloud_info ci(cloud.type, get_cloud_colour(cloudno), dur, ch, gp,
+ cloud.killer);
env.map_knowledge(gp).set_cloud(ci);
}