summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-01-05 14:07:33 +0100
committerAdam Borowski <kilobyte@angband.pl>2010-01-05 14:07:33 +0100
commit638720017437843def8f94577cae7b4c5871ec61 (patch)
tree4fc6c0ac339e9150e056079c8ca46fe46559a169 /crawl-ref/source/itemprop.cc
parent150e49039869a03a1788e8c005a9b6abccd4b8f3 (diff)
downloadcrawl-ref-638720017437843def8f94577cae7b4c5871ec61.tar.gz
crawl-ref-638720017437843def8f94577cae7b4c5871ec61.zip
Make holy scourges have same handedness as unblessed demon whips.
Diffstat (limited to 'crawl-ref/source/itemprop.cc')
-rw-r--r--crawl-ref/source/itemprop.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index 7133545758..af3828e573 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -1396,7 +1396,8 @@ hands_reqd_type hands_reqd( const item_def &item, size_type size )
// Adjust handedness for size only for non-whip melee weapons.
if (!is_range_weapon(item)
&& item.sub_type != WPN_WHIP
- && item.sub_type != WPN_DEMON_WHIP)
+ && item.sub_type != WPN_DEMON_WHIP
+ && item.sub_type != WPN_HOLY_SCOURGE)
{
fit = cmp_weapon_size(item, size);