summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilesdl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/tilesdl.cc')
-rw-r--r--crawl-ref/source/tilesdl.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/tilesdl.cc b/crawl-ref/source/tilesdl.cc
index f5cee60297..07d36c948b 100644
--- a/crawl-ref/source/tilesdl.cc
+++ b/crawl-ref/source/tilesdl.cc
@@ -1439,6 +1439,11 @@ int tile_known_weapon_brand(const item_def item)
int tile_corpse_brand(const item_def item)
{
+ // Brands are mostly meaningless to herbivores.
+ // Could still be interesting for Fulsome Distillation, though.
+ if (player_mutation_level(MUT_HERBIVOROUS) == 3)
+ return (0);
+
if (is_poisonous(item))
return TILE_FOOD_POISONED;