summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 4049fd7ef3..c6863e4cb4 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1310,7 +1310,12 @@ static std::string _describe_armour( const item_def &item, bool verbose )
if (!is_known_artefact(item))
{
const int max_ench = armour_max_enchant(item);
- if (item.plus < max_ench || !item_ident( item, ISFLAG_KNOW_PLUSES ))
+ if (armour_is_hide(item))
+ {
+ description += "$Enchanting it will turn it into a suit of "
+ "magical armour.";
+ }
+ else if (item.plus < max_ench || !item_ident(item, ISFLAG_KNOW_PLUSES))
{
description += "$It can be maximally enchanted to +";
_append_value(description, max_ench, false);