summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-11-03 13:50:03 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-11-03 14:02:48 +0100
commitf42c33718495449a5b1bce42d05b76d3975cc76e (patch)
tree2dbe9c59bedc50d50c24e89fbebdd43179fdb245 /crawl-ref/source/itemprop.cc
parent7f8b6d85697774a182b3f40aca21e2286d5c32a3 (diff)
downloadcrawl-ref-f42c33718495449a5b1bce42d05b76d3975cc76e.tar.gz
crawl-ref-f42c33718495449a5b1bce42d05b76d3975cc76e.zip
Bracers of archery: 5,3 slaying for ranged combat, -1,-1 for melee.
Diffstat (limited to 'crawl-ref/source/itemprop.cc')
-rw-r--r--crawl-ref/source/itemprop.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index eed9ac927d..90dade7d51 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -905,6 +905,8 @@ void set_gloves_random_desc( item_def &item )
ASSERT( item.base_type == OBJ_ARMOUR && item.sub_type == ARM_GLOVES );
item.plus2 = coinflip() ? TGLOV_DESC_GLOVES : TGLOV_DESC_GAUNTLETS;
+ if (get_armour_ego_type(item) == SPARM_ARCHERY)
+ item.plus2 = TGLOV_DESC_BRACERS;
}
//