summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 56f17edf77..a37d5f9681 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -962,11 +962,10 @@ bool can_wear_armour(const item_def &item, bool verbose, bool ignore_temporary)
return (false);
}
- if (you.species == SP_KENKU
- && (ignore_temporary || !player_is_shapechanged()))
+ if (player_mutation_level(MUT_BEAK))
{
if (verbose)
- mpr("That helmet does not fit your head!");
+ mpr("You can't wear that with your beak!");
return (false);
}