summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index b386f0f4cb..3e1d8450fa 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -571,8 +571,8 @@ bool you_can_wear(int eq, bool special_armour)
if (you.species == SP_GHOUL && eq == EQ_GLOVES)
return (false);
- if (eq == EQ_HELMET
- && (player_mutation_level(MUT_HORNS) || player_mutation_level(MUT_BEAK)))
+ if (eq == EQ_HELMET && (player_mutation_level(MUT_HORNS)
+ || player_mutation_level(MUT_BEAK)))
{
return (special_armour);
}