summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilereg-inv.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-07-17 17:56:53 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-07-17 17:56:53 +0200
commitd6d3c1c7156c8ef6494196065cdb22f9c50ba664 (patch)
tree175698cb5bb8d642bd6ae4485a1fcd9c006bd330 /crawl-ref/source/tilereg-inv.cc
parent45dcbe7e4728c8276da687ebd43c7d43c97463f5 (diff)
downloadcrawl-ref-d6d3c1c7156c8ef6494196065cdb22f9c50ba664.tar.gz
crawl-ref-d6d3c1c7156c8ef6494196065cdb22f9c50ba664.zip
Ensure no more sightings of spiked flails and empty ebony caskets.
Spiked flail tiles can be reused for randart regular flails, thus moving them to UNUSED/ for now, for ortoslon's and co decision.
Diffstat (limited to 'crawl-ref/source/tilereg-inv.cc')
-rw-r--r--crawl-ref/source/tilereg-inv.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/tilereg-inv.cc b/crawl-ref/source/tilereg-inv.cc
index 6a1262b60b..5ff2bd2031 100644
--- a/crawl-ref/source/tilereg-inv.cc
+++ b/crawl-ref/source/tilereg-inv.cc
@@ -233,7 +233,7 @@ static bool _can_use_item(const item_def &item, bool equipped)
{
#if TAG_MAJOR_VERSION == 34
// There's nothing you can do with an empty box if you can't unwield it.
- if (!equipped && item.sub_type == MISC_EMPTY_EBONY_CASKET)
+ if (!equipped && item.sub_type == MISC_BUGGY_EBONY_CASKET)
return false;
#endif