summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-10 14:48:53 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-10 14:48:53 +0000
commit65b6a91d63885d508bd0b6f32fbbc1cb7c100790 (patch)
tree1fcf3ee2a1a8d75d8789f1003481ced9fca32b38 /crawl-ref/source/itemname.cc
parentddbb6f54b0826faa92a589be03c6e8ba7f6762a4 (diff)
downloadcrawl-ref-65b6a91d63885d508bd0b6f32fbbc1cb7c100790.tar.gz
crawl-ref-65b6a91d63885d508bd0b6f32fbbc1cb7c100790.zip
Describe items considered evil by the good gods as such in the inventory
description screen. This should fix [2014399]. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6474 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 830fa06757..71f15c9565 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -2555,8 +2555,11 @@ const std::string menu_colour_item_prefix(const item_def &item, bool temp)
prefixes.push_back("unidentified");
}
- if (god_dislikes_item_handling(item))
+ if (good_god_dislikes_item_handling(item)
+ || god_dislikes_item_handling(item))
+ {
prefixes.push_back("evil_item");
+ }
if (is_emergency_item(item))
prefixes.push_back("emergency_item");