summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-15 17:09:18 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-15 17:09:18 +0000
commit7d722243116e34d7a39cafa6a149c341a742a884 (patch)
treec33cdad1ccb138b3f86e687b8d72834ee86ceeca /crawl-ref
parent7e85c2da88c6f3a9638d84dbd736f62f7e0e1992 (diff)
downloadcrawl-ref-7d722243116e34d7a39cafa6a149c341a742a884.tar.gz
crawl-ref-7d722243116e34d7a39cafa6a149c341a742a884.zip
Add still more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9089 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/makeitem.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index 7ab66e12ea..9bcd9df25d 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -2119,7 +2119,8 @@ static void _generate_armour_item(item_def& item, bool allow_uniques,
set_item_ego_type(item, OBJ_ARMOUR,
_determine_armour_ego(item, item.sub_type, 2+2*you.your_level));
}
- item.plus -= 1+random2(3);
+
+ item.plus -= 1+random2(3);
if (item_level == -5)
do_curse_item(item);
@@ -2170,8 +2171,8 @@ static void _generate_armour_item(item_def& item, bool allow_uniques,
if (force_good)
hide2armour(item); // What of animal hides? {dlb}
- // Skin armours and crystal plate mail don't get special
- // enchantments or species, but can be randarts.
+ // Skin armours and crystal plate mail normally don't get egos, but
+ // can be randarts.
if (armour_is_hide(item, true)
|| item.sub_type == ARM_CRYSTAL_PLATE_MAIL
|| item.sub_type == ARM_ANIMAL_SKIN)