summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 85e780d42d..67e9274d22 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -232,6 +232,11 @@ void clear_envmap_grid( int x, int y )
env.map[x][y].clear();
}
+bool is_notable_terrain(dungeon_feature_type ftype)
+{
+ return Feature[ftype].notable;
+}
+
#if defined(WIN32CONSOLE) || defined(DOS)
static unsigned colflag2brand(int colflag)
{