summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index cfbe5395e2..bb45b4ad98 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -862,7 +862,7 @@ static int find_acquirement_subtype(object_class_type class_wanted,
// mutation specific problems (horns allow caps)
if (type_wanted == ARM_BOOTS && !player_has_feet()
- || you.mutation[MUT_CLAWS] >= 3 && type_wanted == ARM_GLOVES)
+ || you.has_claws(false) >= 3 && type_wanted == ARM_GLOVES)
{
type_wanted = OBJ_RANDOM;
}