summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index b13d633ed0..a12e1c7804 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -1030,11 +1030,13 @@ std::string item_def::name_aux( description_level_type desc,
}
if (!basename && !dbname && know_racial)
- // always give racial type (it does have game effects)
+ {
+ // Always give racial type (it does have game effects).
buff << racial_description_string(*this, terse);
+ }
- if (know_brand && !terse &&
- (get_weapon_brand(*this) == SPWPN_VAMPIRICISM))
+ if (know_brand && !terse
+ && get_weapon_brand(*this) == SPWPN_VAMPIRICISM)
{
buff << "vampiric ";
}