summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/describe.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 970ef8008c..1de9550c25 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3327,8 +3327,13 @@ std::string get_item_description( const item_def &item, bool verbose, bool dump
description += " aum. "; // arbitrary unit of mass
if ( is_dumpable_artifact(item, false) )
- description += "$$This ancient artifact cannot be changed "
- "by magic or mundane means.";
+ {
+ if (item.base_type == OBJ_ARMOUR || item.base_type == OBJ_WEAPONS)
+ description += "$$This ancient artifact cannot be changed "
+ "by magic or mundane means.";
+ else
+ description += "$$It is an ancient artifact.";
+ }
}
return (description);