Skip to content

Commit

Permalink
Don't cause bleeding on unarmed hits if your claws are covered with g…
Browse files Browse the repository at this point in the history
…loves.
  • Loading branch information
kilobyte committed Oct 10, 2011
1 parent d56c226 commit e187e2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawl-ref/source/fight.cc
Expand Up @@ -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)
{
Expand Down

0 comments on commit e187e2a

Please sign in to comment.