summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/randart.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-17 17:37:24 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-17 17:37:24 +0000
commitda621d89cd3418e99b40a2ee5b326065852bea8f (patch)
tree2473e58425c5822a2e0e802fd3631f424510b30d /crawl-ref/source/randart.cc
parent4e1dc59551a094205041dacc5ba16edca25266d3 (diff)
downloadcrawl-ref-da621d89cd3418e99b40a2ee5b326065852bea8f.tar.gz
crawl-ref-da621d89cd3418e99b40a2ee5b326065852bea8f.zip
Clean up TSO's weapon blessing again.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4306 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/randart.cc')
-rw-r--r--crawl-ref/source/randart.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/randart.cc b/crawl-ref/source/randart.cc
index 57da9a4abc..c388dffb26 100644
--- a/crawl-ref/source/randart.cc
+++ b/crawl-ref/source/randart.cc
@@ -90,6 +90,12 @@ static bool god_fits_artefact(const god_type which_god, const item_def &item)
break;
case GOD_SHINING_ONE: // holiness, honourable combat
+ if (item.base_type != OBJ_WEAPONS
+ || weapon_skill(item) != SK_LONG_BLADES)
+ {
+ return (false);
+ }
+
if (brand != SPWPN_HOLY_WRATH)
return (false);