summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/viewmap.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-03-02 00:17:07 -0500
committerShmuale Mark <shm.mark@gmail.com>2014-03-03 16:31:09 -0500
commitbe29d668379c021951a873db687e5881d4bde602 (patch)
treec614e8a1f39622ca0c6760bf34cb3c26fabd7637 /crawl-ref/source/viewmap.cc
parent1a3bbcab46e501c0aca98b69347b8dab13da39da (diff)
downloadcrawl-ref-be29d668379c021951a873db687e5881d4bde602.tar.gz
crawl-ref-be29d668379c021951a873db687e5881d4bde602.zip
Purge some references to Forest.
In particular, ctrl-O should no longer mention the branch.
Diffstat (limited to 'crawl-ref/source/viewmap.cc')
-rw-r--r--crawl-ref/source/viewmap.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/viewmap.cc b/crawl-ref/source/viewmap.cc
index ae9dc9c8fd..3bcb24aa5b 100644
--- a/crawl-ref/source/viewmap.cc
+++ b/crawl-ref/source/viewmap.cc
@@ -172,6 +172,7 @@ bool is_feature(ucs_t feature, const coord_def& where)
case DNGN_EXIT_DUNGEON:
#if TAG_MAJOR_VERSION == 34
case DNGN_RETURN_FROM_DWARF:
+ case DNGN_RETURN_FROM_FOREST:
#endif
case DNGN_RETURN_FROM_ORC:
case DNGN_RETURN_FROM_LAIR:
@@ -186,7 +187,6 @@ bool is_feature(ucs_t feature, const coord_def& where)
case DNGN_RETURN_FROM_SWAMP:
case DNGN_RETURN_FROM_SHOALS:
case DNGN_RETURN_FROM_SPIDER:
- case DNGN_RETURN_FROM_FOREST:
#if TAG_MAJOR_VERSION == 34
case DNGN_EXIT_PORTAL_VAULT:
#endif
@@ -204,6 +204,7 @@ bool is_feature(ucs_t feature, const coord_def& where)
case DNGN_ABYSSAL_STAIR:
#if TAG_MAJOR_VERSION == 34
case DNGN_ENTER_DWARF:
+ case DNGN_ENTER_FOREST:
#endif
case DNGN_ENTER_ORC:
case DNGN_ENTER_LAIR:
@@ -218,7 +219,6 @@ bool is_feature(ucs_t feature, const coord_def& where)
case DNGN_ENTER_SWAMP:
case DNGN_ENTER_SHOALS:
case DNGN_ENTER_SPIDER:
- case DNGN_ENTER_FOREST:
return true;
default:
return false;