summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/artefact.cc
diff options
context:
space:
mode:
authorDarshan Shaligram <dshaligram@users.sourceforge.net>2010-01-10 18:22:58 +0530
committerDarshan Shaligram <dshaligram@users.sourceforge.net>2010-01-10 18:24:05 +0530
commit8a78afdcea14016d0471fe74cc66a943c8fd616a (patch)
tree6b620847a4af5cde2ae851dd501bb14c20540a21 /crawl-ref/source/artefact.cc
parent1acfe36802a6db5f6d2d6ed47b57c210b4136e72 (diff)
downloadcrawl-ref-8a78afdcea14016d0471fe74cc66a943c8fd616a.tar.gz
crawl-ref-8a78afdcea14016d0471fe74cc66a943c8fd616a.zip
Remove resist slowing, increment tag major version.
Diffstat (limited to 'crawl-ref/source/artefact.cc')
-rw-r--r--crawl-ref/source/artefact.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/artefact.cc b/crawl-ref/source/artefact.cc
index a8648bf4d2..e0bbedf6d1 100644
--- a/crawl-ref/source/artefact.cc
+++ b/crawl-ref/source/artefact.cc
@@ -102,11 +102,8 @@ static bool _god_fits_artefact(const god_type which_god, const item_def &item,
if (item.base_type == OBJ_WEAPONS && item.sub_type == WPN_QUICK_BLADE)
type_bad = true;
- if (item.base_type == OBJ_JEWELLERY && (item.sub_type == AMU_RAGE
- || item.sub_type == AMU_RESIST_SLOW))
- {
+ if (item.base_type == OBJ_JEWELLERY && item.sub_type == AMU_RAGE)
type_bad = true;
- }
break;
default: