summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index ab20e8e819..8416b6eade 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -1648,8 +1648,7 @@ void tutorial_describe_item(item_def &item)
break;
}
case OBJ_MISSILES:
- if (item.sub_type == MI_JAVELIN || item.sub_type == MI_SLING_BULLET
- || item.sub_type == MI_DART || item.sub_type == MI_STONE)
+ if ( is_throwable(item, player_size()) )
{
ostr << item.name(DESC_CAP_YOUR)
<< " can be thrown without the use of a launcher. ";