summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc12
1 files changed, 9 insertions, 3 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 1e993a65bd..754f1b6d1a 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1626,11 +1626,17 @@ std::string get_item_description( const item_def &item, bool verbose,
{
if (player_mutation_level(MUT_SAPROVOROUS) == 3)
description << "It looks nice and ripe.";
- else if (you.is_undead != US_UNDEAD)
+ else
{
description << "In fact, it is "
- "rotting away before your eyes. "
- "Eating it would probably be unwise.";
+ "rotting away before your eyes.";
+
+ if (you.is_undead != US_UNDEAD
+ && you.species != SP_VAMPIRE)
+ {
+ description << " Eating it would "
+ "probably be unwise.";
+ }
}
}
else if (player_mutation_level(MUT_SAPROVOROUS) < 3)