summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/gather_features
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-06-27 17:02:27 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-06-27 19:11:12 +0200
commit1ef2f88ea8e8c6c7c0213bd77c4158ca2e0f7633 (patch)
tree2e4c4f8e3036d450015401f43186452e87e7031c /crawl-ref/source/util/gather_features
parenteaceeb94d8b0a76c7e7247b9df6aaf8be2300141 (diff)
downloadcrawl-ref-1ef2f88ea8e8c6c7c0213bd77c4158ca2e0f7633.tar.gz
crawl-ref-1ef2f88ea8e8c6c7c0213bd77c4158ca2e0f7633.zip
Don't recognize an error message as a valid feature name.
Diffstat (limited to 'crawl-ref/source/util/gather_features')
-rwxr-xr-xcrawl-ref/source/util/gather_features1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/util/gather_features b/crawl-ref/source/util/gather_features
index a9adc15863..70d80bf06c 100755
--- a/crawl-ref/source/util/gather_features
+++ b/crawl-ref/source/util/gather_features
@@ -25,6 +25,7 @@ for (/"([^"\n]*)"/g)
{
next if /^$/;
next if /^undefined trap$/;
+ next if /^Error/;
$features{articled($_)} = 1;
}