summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-15 21:36:40 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-15 21:36:40 +0000
commit9c38c1f6f94bc55322a66719f14e8f5b6ed78a1a (patch)
treedcaddc973b345fa6b4d3b5bd5c67136a85f6c4bd /crawl-ref/source
parent957415b47d93022cca4dc27ea51ac4a0bb1fc438 (diff)
downloadcrawl-ref-9c38c1f6f94bc55322a66719f14e8f5b6ed78a1a.tar.gz
crawl-ref-9c38c1f6f94bc55322a66719f14e8f5b6ed78a1a.zip
Disallow racial blessed blades, as they never show up randomly.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3067 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-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 a80fe249c5..cdf6630b5b 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -640,7 +640,8 @@ void set_equip_race( item_def &item, unsigned long flags )
|| item.sub_type == WPN_SCYTHE
|| item.sub_type == WPN_DEMON_BLADE
|| item.sub_type == WPN_DEMON_WHIP
- || item.sub_type == WPN_DEMON_TRIDENT)
+ || item.sub_type == WPN_DEMON_TRIDENT
+ || item.sub_type == WPN_BLESSED_BLADE)
{
return;
}