summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/quiver.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-09-21 04:15:26 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-09-22 00:30:07 +0200
commit2c076aff364b3a973570b81da2c055aef7e37f4f (patch)
treee5053d082532fe7d57db57d3cb89e4d10a3d2fc6 /crawl-ref/source/quiver.cc
parent1c94edbbaebaa2068e1f626ecf2f494491acf4ca (diff)
downloadcrawl-ref-2c076aff364b3a973570b81da2c055aef7e37f4f.tar.gz
crawl-ref-2c076aff364b3a973570b81da2c055aef7e37f4f.zip
A new throwing missile, tentantively named "tomahawk".
The name is somewhat problematic, as real tomahawks were fit for melee (just like hand axes...). It's mostly because a few bailey_axe vaults want something that resembles an axe, but I'd rather axe or redesign those vaults than have them block better alternatives. The balance purpose is to have something between darts (damage 2) and javelins (damage 10), for use by orcs, orc warriors and merfolk.
Diffstat (limited to 'crawl-ref/source/quiver.cc')
-rw-r--r--crawl-ref/source/quiver.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawl-ref/source/quiver.cc b/crawl-ref/source/quiver.cc
index 6fabf874cf..6726f133e3 100644
--- a/crawl-ref/source/quiver.cc
+++ b/crawl-ref/source/quiver.cc
@@ -560,10 +560,8 @@ static bool _item_matches(const item_def &item, fire_type types,
return true;
if ((types & FIRE_NET) && item.sub_type == MI_THROWING_NET)
return true;
-#if TAG_MAJOR_VERSION == 34
- if ((types & FIRE_PIE) && item.sub_type == MI_PIE)
+ if ((types & FIRE_TOMAHAWK) && item.sub_type == MI_TOMAHAWK)
return true;
-#endif
if (types & FIRE_LAUNCHER)
{