From d4189cb0308511fc5d7e12790993f6844974e0c7 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Fri, 13 Nov 2009 14:54:20 +0100 Subject: Hack player LOS routines for arena. Player now sees everything in the arena. --- crawl-ref/source/player.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crawl-ref/source/player.cc') diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc index 7af59e3b10..3b1516551a 100644 --- a/crawl-ref/source/player.cc +++ b/crawl-ref/source/player.cc @@ -6885,6 +6885,9 @@ bool player::invisible() const bool player::visible_to(const actor *looker) const { + if (crawl_state.arena) + return (false); + if (this == looker) return (can_see_invisible() || !invisible()); -- cgit v1.2.3-54-g00ecf