summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/feature.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-20 20:28:22 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-20 20:28:22 +0100
commita976ef1a132d0d8aff6fbaa49fff081706ed95ca (patch)
tree26042f878adc23f37228864a440da1b06797890b /crawl-ref/source/feature.cc
parentad36ceb063ee2cb58638d68a587c8acf79d7d3a8 (diff)
downloadcrawl-ref-a976ef1a132d0d8aff6fbaa49fff081706ed95ca.tar.gz
crawl-ref-a976ef1a132d0d8aff6fbaa49fff081706ed95ca.zip
Move the rune lock to Vaults rather than Depths.
I can't quite fathom the reason to not moving it to /dev/null instead, but here you go.
Diffstat (limited to 'crawl-ref/source/feature.cc')
-rw-r--r--crawl-ref/source/feature.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/feature.cc b/crawl-ref/source/feature.cc
index 886f87b32f..0234245940 100644
--- a/crawl-ref/source/feature.cc
+++ b/crawl-ref/source/feature.cc
@@ -494,7 +494,7 @@ static void _init_feat(feature_def &f, dungeon_feature_type feat)
case DNGN_ENTER_ORCISH_MINES:
case DNGN_ENTER_LAIR:
case DNGN_ENTER_SLIME_PITS:
- case DNGN_ENTER_VAULTS:
+ case DNGN_ENTER_DEPTHS:
case DNGN_ENTER_CRYPT:
case DNGN_ENTER_HALL_OF_BLADES:
case DNGN_ENTER_TEMPLE:
@@ -513,7 +513,7 @@ static void _init_feat(feature_def &f, dungeon_feature_type feat)
f.minimap = MF_STAIR_BRANCH;
break;
- case DNGN_ENTER_DEPTHS:
+ case DNGN_ENTER_VAULTS:
f.colour = LIGHTGREEN;
f.dchar = DCHAR_ARCH;
f.flags |= FFT_NOTABLE;