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.cc17
1 files changed, 8 insertions, 9 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index a704d4c989..e91c6b9296 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -862,8 +862,7 @@ bool can_wear_armour(const item_def &item, bool verbose, bool ignore_temporary)
if (sub_type == ARM_NAGA_BARDING)
can_wear = (you.species == SP_NAGA);
-
- if (sub_type == ARM_CENTAUR_BARDING)
+ else if (sub_type == ARM_CENTAUR_BARDING)
can_wear = (you.species == SP_CENTAUR);
if (!can_wear)
@@ -921,14 +920,14 @@ bool can_wear_armour(const item_def &item, bool verbose, bool ignore_temporary)
if (you.species == SP_NAGA && sub_type == ARM_NAGA_BARDING
&& (ignore_temporary || !player_is_shapechanged()))
{
- // it fits
+ // It fits.
return (true);
}
else if (you.species == SP_CENTAUR
&& sub_type == ARM_CENTAUR_BARDING
&& (ignore_temporary || !player_is_shapechanged()))
{
- // it fits
+ // It fits.
return (true);
}
else if (slot == EQ_HELMET)
@@ -976,13 +975,13 @@ bool can_wear_armour(const item_def &item, bool verbose, bool ignore_temporary)
}
// Giant races
- if ((you.species >= SP_OGRE && you.species <= SP_OGRE_MAGE)
+ if (you.species >= SP_OGRE && you.species <= SP_OGRE_MAGE
|| player_genus(GENPC_DRACONIAN))
{
- if ((sub_type >= ARM_LEATHER_ARMOUR
- && sub_type <= ARM_PLATE_MAIL)
- || (sub_type >= ARM_GLOVES
- && sub_type <= ARM_BUCKLER)
+ if (sub_type >= ARM_LEATHER_ARMOUR
+ && sub_type <= ARM_PLATE_MAIL
+ || sub_type >= ARM_GLOVES
+ && sub_type <= ARM_BUCKLER
|| sub_type == ARM_CRYSTAL_PLATE_MAIL
|| is_hard_helmet(item))
{