summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/gather_features
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-16 13:57:48 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-16 13:59:11 +0200
commit69d9453c049cd7474b3bf4bb241f30c7362b9b56 (patch)
tree2bf3f7417eab251d2c090bf3f195151c74ce3d2d /crawl-ref/source/util/gather_features
parent01e25e4a4b34b96d24e6e2fe3daae01644306707 (diff)
downloadcrawl-ref-69d9453c049cd7474b3bf4bb241f30c7362b9b56.tar.gz
crawl-ref-69d9453c049cd7474b3bf4bb241f30c7362b9b56.zip
Teach db_lint about special-cased "gleaming silver wall"s.
They're neither base features, nor vault redefitions.
Diffstat (limited to 'crawl-ref/source/util/gather_features')
-rwxr-xr-xcrawl-ref/source/util/gather_features2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/util/gather_features b/crawl-ref/source/util/gather_features
index f9b044d75e..dbd80f60a7 100755
--- a/crawl-ref/source/util/gather_features
+++ b/crawl-ref/source/util/gather_features
@@ -44,4 +44,6 @@ for (grep /\.des|\.des\.disabled|\.lua$/, `git ls-files`)
for /\bdesc\s*=\s*"([^"]*)"/g;
}
+$features{articled("gleaming silver wall")} = 1;
+
print join("\n", sort keys %features), "\n";