From e187e2a158069541c7460e3825e72440e9c8e0dd Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Tue, 11 Oct 2011 01:20:56 +0200 Subject: [PATCH] Don't cause bleeding on unarmed hits if your claws are covered with gloves. --- crawl-ref/source/fight.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc index e5c13233b3f..5ef4072ad43 100644 --- a/crawl-ref/source/fight.cc +++ b/crawl-ref/source/fight.cc @@ -930,7 +930,7 @@ bool melee_attack::player_attack() // Actually apply the bleeding effect, this can come from an aux claw // or a main hand claw attack and up to now has not actually happened. - const int degree = you.has_claws(); + const int degree = you.has_usable_claws(); if (apply_bleeding && defender->can_bleed() && degree > 0 && damage_done > 0) {