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.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index bf8ac98924..7b32d44b99 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -2579,8 +2579,9 @@ bool is_useless_item(const item_def &item, bool temp)
&& you.hunger_state == HS_STARVING);
case RING_REGENERATION:
- return (temp && you.species == SP_VAMPIRE
- && you.hunger_state == HS_STARVING);
+ return ((you.mutation[MUT_SLOW_HEALING] == 3)
+ || temp && you.species == SP_VAMPIRE
+ && you.hunger_state == HS_STARVING);
case RING_SEE_INVISIBLE:
return (player_mutation_level(MUT_ACUTE_VISION));