summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 72fdb59a01..8ac9ae18f7 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -2302,6 +2302,8 @@ bool is_emergency_item(const item_def &item)
switch (item.sub_type)
{
case WAND_HASTING:
+ if (you.religion == GOD_CHEIBRIADOS)
+ return (false);
case WAND_HEALING:
case WAND_TELEPORTATION:
return (true);
@@ -2325,6 +2327,8 @@ bool is_emergency_item(const item_def &item)
switch (item.sub_type)
{
case POT_SPEED:
+ if (you.religion == GOD_CHEIBRIADOS)
+ return (false);
case POT_HEALING:
case POT_HEAL_WOUNDS:
case POT_RESISTANCE:
@@ -2353,13 +2357,15 @@ bool is_good_item(const item_def &item)
case OBJ_POTIONS:
switch (item.sub_type)
{
+ case POT_BERSERK_RAGE:
+ if (you.religion == GOD_CHEIBRIADOS)
+ return (false);
case POT_CURE_MUTATION:
case POT_GAIN_STRENGTH:
case POT_GAIN_INTELLIGENCE:
case POT_GAIN_DEXTERITY:
case POT_EXPERIENCE:
case POT_MAGIC:
- case POT_BERSERK_RAGE:
case POT_MIGHT:
case POT_AGILITY:
case POT_BRILLIANCE: