summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/monster.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index 4f41076b68..80f7d93931 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -749,8 +749,8 @@ bool monsters::can_use_missile(const item_def &item) const
return (is_throwable(this, item));
}
- // Darts and stones are allowed even without launcher.
- if (item.sub_type == MI_DART || item.sub_type == MI_STONE)
+ // Stones are allowed even without launcher.
+ if (item.sub_type == MI_STONE)
return (true);
item_def *launch;