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.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 077f6604f5..242f71a3a3 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -890,15 +890,16 @@ bool can_wear_armour(const item_def &item, bool verbose, bool ignore_temporary)
&& (ignore_temporary || !player_is_shapechanged()))
{
if (verbose)
- mpr("That helmet does not fit your head!");
+ mpr("That helmet does not fit your head!");
return (false);
}
}
- else if (!can_equip( slot, ignore_temporary ))
+
+ if (!can_equip( slot, ignore_temporary ))
{
if (verbose)
- mpr("You can't wear that in your present form.");
+ mpr("You can't wear that in your present form.");
return (false);
}