summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-15 17:21:08 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-15 17:21:08 +0000
commitd9eb1773cd9b88758651c3261947f30275bfea48 (patch)
tree1f8a8fe3e4d0a7ed062ee9bc7a49b6bea88fb9d7 /crawl-ref/source/newgame.cc
parent51c7e2c369072494e08953d57b1f5421c4638934 (diff)
downloadcrawl-ref-d9eb1773cd9b88758651c3261947f30275bfea48.tar.gz
crawl-ref-d9eb1773cd9b88758651c3261947f30275bfea48.zip
Add more comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9503 c06c8d41-db1a-0410-9941-cceddc491573
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))