summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stash.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-10-17 00:16:20 +0200
committerRobert Vollmert <rvollmert@gmx.net>2009-10-17 00:16:20 +0200
commit241ceb5971b5c87b58e7f28f9fee417230561a5d (patch)
tree8e3a0781c9ba03971f8880fe6923337a50f45409 /crawl-ref/source/stash.cc
parentf6e6b6b7151af9290c0597acb1995ed157378529 (diff)
downloadcrawl-ref-241ceb5971b5c87b58e7f28f9fee417230561a5d.tar.gz
crawl-ref-241ceb5971b5c87b58e7f28f9fee417230561a5d.zip
Globally replace see_grid by see_cell.
Diffstat (limited to 'crawl-ref/source/stash.cc')
-rw-r--r--crawl-ref/source/stash.cc2
1 files changed, 1 insertions, 1 deletions
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];