From f984dabc74b0a6370e91147b6709b3ca6e591448 Mon Sep 17 00:00:00 2001 From: haranp Date: Fri, 30 Jan 2009 14:07:45 +0000 Subject: Clean up Animate Dead. Also fix messaging. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8853 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/stuff.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/stuff.h') diff --git a/crawl-ref/source/stuff.h b/crawl-ref/source/stuff.h index 74e90b86e7..2a63276b7a 100644 --- a/crawl-ref/source/stuff.h +++ b/crawl-ref/source/stuff.h @@ -90,7 +90,8 @@ public: radius_iterator( const coord_def& center, int radius, bool roguelike_metric = true, bool require_los = true, - bool exclude_center = false ); + bool exclude_center = false, + const env_show_grid* losgrid = NULL ); bool done() const; void reset(); operator bool() const { return !done(); } @@ -109,6 +110,7 @@ private: coord_def location, center; int radius; bool roguelike_metric, require_los, exclude_center; + const env_show_grid* losgrid; bool iter_done; }; -- cgit v1.2.3-54-g00ecf