Skip to content

Commit

Permalink
Removed quartering of stab damage
Browse files Browse the repository at this point in the history
Related to CleverRaven#4908
  • Loading branch information
arocoun committed Dec 7, 2013
1 parent b5c12a0 commit 48e8a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/melee.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ int player::roll_stab_damage(monster *z, bool crit)
if (has_trait("THORNS"))
ret += 4;
} else if (weapon.has_flag("SPEAR") || weapon.has_flag("STAB"))
ret = int((weapon.damage_cut() - z_armor) / 4);
ret = int((weapon.damage_cut() - z_armor));
else
return 0; // Can't stab at all!

Expand Down

0 comments on commit 48e8a77

Please sign in to comment.