summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/gather_features
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-10-21 09:55:41 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-10-24 00:30:33 +0200
commit23bff0a80441037a32477b810c9d925527699368 (patch)
tree506f07cee4d9e4df7664a9626c0fcf84f616d3df /crawl-ref/source/util/gather_features
parentcff28afa16543736eb43eb14f8ffb017cddfddc4 (diff)
downloadcrawl-ref-23bff0a80441037a32477b810c9d925527699368.tar.gz
crawl-ref-23bff0a80441037a32477b810c9d925527699368.zip
Fix the desc for "floor" not being shown.
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 58496fb036..4b96a09ba3 100755
--- a/crawl-ref/source/util/gather_features
+++ b/crawl-ref/source/util/gather_features
@@ -10,6 +10,7 @@ sub articled($)
return $_ if /^[A-Z]/ && !/ trap$/;
return "\u$_" if /^(?:the |an |a |some )/i;
return "A $_" if /^one-/i;
+ return "The $_" if $_ eq "floor";
return /^[aeiou]/i ? "An $_" : "A $_";
}