summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/los.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/los.cc')
-rw-r--r--crawl-ref/source/los.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawl-ref/source/los.cc b/crawl-ref/source/los.cc
index e771360f63..bb4ce58d29 100644
--- a/crawl-ref/source/los.cc
+++ b/crawl-ref/source/los.cc
@@ -909,9 +909,7 @@ void calc_show_los()
// Usually the same as player LOS.
bool observe_cell(const coord_def &p)
{
- return (((crawl_state.arena || crawl_state.arena_suspended)
- && crawl_view.in_grid_los(p))
- || you.see_cell(p));
+ return (you.see_cell(p));
}
// Is the cell visible, but a translucent wall is in the way?