summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-01 20:32:58 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-01 20:32:58 +0000
commit0093b92f3f8bca2c89b9808fb27f223d857e6718 (patch)
tree432525c0f324c5ea1472a2315d687a5b356004e3 /crawl-ref
parentc98e65d7c1e611743f82997954c259dedbe843b2 (diff)
downloadcrawl-ref-0093b92f3f8bca2c89b9808fb27f223d857e6718.tar.gz
crawl-ref-0093b92f3f8bca2c89b9808fb27f223d857e6718.zip
In the description for darts, mention that they can be fired from hand
crossbows as well as thrown. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2961 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/describe.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index c3b3a9f301..ab2d6e613d 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1393,7 +1393,8 @@ static std::string describe_ammo( const item_def &item )
description += "A crossbow bolt. ";
break;
case MI_DART:
- description += "A small throwing weapon. ";
+ description += "A small throwing weapon. "
+ "It can also be fired from a hand crossbow.";
break;
case MI_LARGE_ROCK:
description += "A rock, used by giants as a missile. ";