summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/view.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 5d3071c513..7494f55f6d 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -994,11 +994,8 @@ void viewwindow(bool monster_updates, bool show_updates)
}
#ifdef USE_TILE
// Grey out grids that cannot be reached due to beholders.
- else if (/*you.see_cell(gc) && grd(gc) >= DNGN_MINMOVE
- && */you.get_beholder(gc))
- {
+ else if (you.get_beholder(gc))
buffy[bufcount + 1] |= TILE_FLAG_OOR;
- }
#endif
}