From 6434b20370c03acd4847d082cec0b83b30b4b668 Mon Sep 17 00:00:00 2001 From: haranp Date: Wed, 27 Dec 2006 21:31:32 +0000 Subject: Implemented 1622383, slightly better artifact messaging. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@713 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/describe.cc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/describe.cc') 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); -- cgit v1.2.3-54-g00ecf