summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index f723c1adfc..01daa4237a 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1262,6 +1262,12 @@ static std::string _describe_armour( const item_def &item, bool verbose )
description += "It shields its wearer from harm at the cost "
"of magical power.";
break;
+
+ // This is only for bracers (gloves).
+ case SPARM_ARCHERY:
+ description += "These improve your skills with ranged weaponry "
+ "but interfere slightly with melee combat.";
+ break;
}
}