summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/goditem.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-10-22 00:37:56 +0200
committerAdam Borowski <kilobyte@angband.pl>2009-10-22 00:37:56 +0200
commit623696a46a17105b461d5d21b7c52586d7b66e29 (patch)
treea4de6d8b1c6308fc4da1c8a34d1415a1d80ece43 /crawl-ref/source/goditem.cc
parente7fa27e25813163b7f2b730b7e412c02a3d85e77 (diff)
downloadcrawl-ref-623696a46a17105b461d5d21b7c52586d7b66e29.tar.gz
crawl-ref-623696a46a17105b461d5d21b7c52586d7b66e29.zip
Consider quick blades to be weapons of speed for Chronos' purposes.
Diffstat (limited to 'crawl-ref/source/goditem.cc')
-rw-r--r--crawl-ref/source/goditem.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/goditem.cc b/crawl-ref/source/goditem.cc
index be63717a01..a654efef5c 100644
--- a/crawl-ref/source/goditem.cc
+++ b/crawl-ref/source/goditem.cc
@@ -167,6 +167,8 @@ bool is_hasty_item(const item_def& item)
const int item_brand = get_weapon_brand(item);
if (item_brand == SPWPN_SPEED)
return (true);
+ if (item.sub_type == WPN_QUICK_BLADE)
+ return (true);
}
break;
case OBJ_ARMOUR: