summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index d45a8b74f2..1861792b1f 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -662,7 +662,7 @@ static bool player_view_update_at(const coord_def &gc)
// Set excludes in a radius of 1 around harmful clouds genereated
// by neither monsters nor the player.
const int cloudidx = env.cgrid(gc);
- if (cloudidx != EMPTY_CLOUD)
+ if (cloudidx != EMPTY_CLOUD && !crawl_state.arena)
{
cloud_struct &cl = env.cloud[cloudidx];
cloud_type ctype = cl.type;