From 65a1613c83515d7ff24b18a17fc875e77cd2bd36 Mon Sep 17 00:00:00 2001 From: Matthew Cline Date: Mon, 16 Nov 2009 00:06:30 -0800 Subject: Don't auto-exclude clouds in arena mode. During arena mode, the hazardous clouds made by some monsters were being auto-excluded as if they had ben generated via a fog machine. --- crawl-ref/source/view.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/view.cc') 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; -- cgit v1.2.3-54-g00ecf