summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/goditem.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-05-08 21:57:16 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-05-08 22:00:43 -0400
commit151c26771ee7f6fb11a9cd1493aae369afa4f0fe (patch)
treeb96e800f4996e9941df7aff001ed8f283194ee66 /crawl-ref/source/goditem.cc
parent01e124b8e5cdbb35e613779fd8df9b72cb3e9ed6 (diff)
downloadcrawl-ref-151c26771ee7f6fb11a9cd1493aae369afa4f0fe.tar.gz
crawl-ref-151c26771ee7f6fb11a9cd1493aae369afa4f0fe.zip
Don't claim Cheibriados dislikes +rage items (#8295).
Now that the ability menu marks disallowed abilities as such, there doesn't seem to be much reason to claim that they are disliked.
Diffstat (limited to 'crawl-ref/source/goditem.cc')
-rw-r--r--crawl-ref/source/goditem.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/goditem.cc b/crawl-ref/source/goditem.cc
index d7550a515d..4984cdbba7 100644
--- a/crawl-ref/source/goditem.cc
+++ b/crawl-ref/source/goditem.cc
@@ -366,8 +366,7 @@ bool is_hasty_item(const item_def& item)
}
if (is_artefact(item) && item.base_type != OBJ_BOOKS
- && (artefact_wpn_property(item, ARTP_ANGRY)
- || artefact_wpn_property(item, ARTP_BERSERK)))
+ && (artefact_wpn_property(item, ARTP_ANGRY)))
{
retval = true;
}