means something. Since only elves make hand crossbows, only they get any bonus from launched darts anyway. Tweak ammo descriptions accordingly.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3556 c06c8d41-db1a-0410-9941-cceddc491573
KUHOHOTLWUJHXU6U2VSD2R742ENT2VKXLAR6OZ7ERQK3GU7VBIOQC
if ( has_launcher(item) )
{
description += "It is more effective in conjunction with ";
description += racial_description_string(item);
description += "launchers.";
}
else
if (can_throw)
if (can_throw && !can_launch)
description += ".";
else if (!can_throw && can_launch)
description += "It ";
else if (can_throw && can_launch)
description += ", and it ";
if (can_launch)
{
description += "is more effective in conjunction with ";
description += racial_description_string(item);
description += "launchers.";
}