summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-14 23:11:18 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-14 23:14:37 -0700
commitb4a268013bbdc7d0ab4b714e0ed8203aa4681342 (patch)
treec64e76877c80a5b71ec2d7bcfbefe851f0a0f420 /crawl-ref/source/tilepick.cc
parenta61266d5cd2aa8e187b524c7201d14a716bf65d2 (diff)
downloadcrawl-ref-b4a268013bbdc7d0ab4b714e0ed8203aa4681342.tar.gz
crawl-ref-b4a268013bbdc7d0ab4b714e0ed8203aa4681342.zip
Add placeholder tiles for hand/triple crossbows
They Came From rltiles/UNUSED! (With some minor modifications in one obvious case.) Also make the new ranged weapons use generic paperdoll sprites for now. (Much better than them not showing up at all!)
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index d4765d79fd..162145f685 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -3092,7 +3092,9 @@ static tileidx_t _tileidx_weapon_base(const item_def &item)
case WPN_BLOWGUN: return TILE_WPN_BLOWGUN;
case WPN_HUNTING_SLING: return TILE_WPN_HUNTING_SLING;
case WPN_SHORTBOW: return TILE_WPN_SHORTBOW;
+ case WPN_HAND_CROSSBOW: return TILE_WPN_HAND_CROSSBOW;
case WPN_ARBALEST: return TILE_WPN_ARBALEST;
+ case WPN_TRIPLE_CROSSBOW: return TILE_WPN_TRIPLE_CROSSBOW;
case WPN_SPEAR: return TILE_WPN_SPEAR;
case WPN_TRIDENT: return TILE_WPN_TRIDENT;
case WPN_HALBERD: return TILE_WPN_HALBERD;