summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 2e3e011f31..13ce8f67cf 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -3486,12 +3486,13 @@ static void _newgame_make_item(int slot, equipment_type eqslot,
item.plus2 = plus2;
item.special = 0;
- // If the character is restricted in wearing armour of equipment slot
- // eqslot, hand out replacement instead.
+ // If the character is restricted in wearing armour of equipment
+ // slot eqslot, hand out replacement instead.
if (item.base_type == OBJ_ARMOUR && replacement != -1
&& !you_can_wear(eqslot))
{
- // Don't replace shields with bucklers for large races or draconians
+ // Don't replace shields with bucklers for large races or
+ // draconians.
if (sub_type != ARM_SHIELD
|| player_size(PSIZE_TORSO) < SIZE_LARGE
&& !player_genus(GENPC_DRACONIAN))