From 6bdaccfb8c194bfa0bb0b6769babc3710d570b45 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sun, 8 Nov 2009 16:29:24 +0100 Subject: Move see_cell_no_trans into player. Also collect actor/player LOS code in actor-los.cc. --- crawl-ref/source/spl-util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/spl-util.cc') diff --git a/crawl-ref/source/spl-util.cc b/crawl-ref/source/spl-util.cc index c84dbeb525..a11341c80c 100644 --- a/crawl-ref/source/spl-util.cc +++ b/crawl-ref/source/spl-util.cc @@ -486,7 +486,7 @@ int apply_area_visible(cell_func cf, int power, int rv = 0; for (radius_iterator ri(you.pos(), LOS_RADIUS); ri; ++ri) - if (pass_through_trans || see_cell_no_trans(*ri)) + if (pass_through_trans || you.see_cell_no_trans(*ri)) rv += cf(*ri, power, 0, agent); return (rv); -- cgit v1.2.3-54-g00ecf