summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-30 14:41:20 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-30 14:41:20 +0000
commite0bc630366ff8c67e18728ae1017c3135c5566d7 (patch)
tree772f525185f7c8b506e3329eab535ec5a3d5d4b4 /crawl-ref/source/itemname.cc
parent8e1e73bb36273c2f4940a1cec8947395f9155d5d (diff)
downloadcrawl-ref-e0bc630366ff8c67e18728ae1017c3135c5566d7.tar.gz
crawl-ref-e0bc630366ff8c67e18728ae1017c3135c5566d7.zip
Leather and animal skins can now accept ISFLAG_EMBROIDERED_SHINY; they'll
be 'tattooed' in this case. (Better adjectives welcome.) Fixes 1825641. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2952 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 8c3561ffa3..1cb03c08df 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -1153,10 +1153,12 @@ std::string item_def::name_aux( description_level_type desc,
buff << "embroidered ";
}
else if (item_typ != ARM_LEATHER_ARMOUR
- && item_typ != ARM_ANIMAL_SKIN)
+ && item_typ != ARM_ANIMAL_SKIN)
{
buff << "shiny ";
}
+ else
+ buff << "tattooed ";
break;
case ISFLAG_RUNED: