summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 59d4daf10e..2dbc1a9649 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -893,8 +893,8 @@ static std::string _level_description_string_hud()
else if (place.level_type == LEVEL_PORTAL_VAULT
|| place.level_type == LEVEL_LABYRINTH)
{
- if (you.level_type_name == "bazaar")
- short_name = "A Bazaar";
+ if (!you.level_type_name.empty())
+ short_name = article_a(upcase_first(you.level_type_name), false);
else
short_name.insert(0, "A ");
}