summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/itemprop.cc')
-rw-r--r--crawl-ref/source/itemprop.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index 9b9a938b16..a29eae68ff 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -1842,7 +1842,8 @@ const char *ammo_name(const item_def &bow)
bool has_launcher(const item_def &ammo)
{
ASSERT(ammo.base_type == OBJ_MISSILES);
- return (ammo.sub_type != MI_LARGE_ROCK
+ return (ammo.sub_type != MI_DART
+ && ammo.sub_type != MI_LARGE_ROCK
&& ammo.sub_type != MI_JAVELIN
&& ammo.sub_type != MI_THROWING_NET);
}