From 241ceb5971b5c87b58e7f28f9fee417230561a5d Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 17 Oct 2009 00:16:20 +0200 Subject: Globally replace see_grid by see_cell. --- crawl-ref/source/stash.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/stash.cc') diff --git a/crawl-ref/source/stash.cc b/crawl-ref/source/stash.cc index d35a5a9751..6eb97aba92 100644 --- a/crawl-ref/source/stash.cc +++ b/crawl-ref/source/stash.cc @@ -1546,7 +1546,7 @@ void StashTracker::update_visible_stashes( for (int cy = crawl_view.glos1.y; cy <= crawl_view.glos2.y; ++cy) for (int cx = crawl_view.glos1.x; cx <= crawl_view.glos2.x; ++cx) { - if (!in_bounds(cx, cy) || !see_grid(cx, cy)) + if (!in_bounds(cx, cy) || !see_cell(cx, cy)) continue; const dungeon_feature_type grid = grd[cx][cy]; -- cgit v1.2.3-54-g00ecf