Skip to content

Commit

Permalink
Fix slaying not increasing damage for magical staves.
Browse files Browse the repository at this point in the history
(cherry picked from commit a3febd7)
  • Loading branch information
elliptic authored and kilobyte committed Mar 3, 2012
1 parent bc89ee7 commit d2aae25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawl-ref/source/melee_attack.cc
Expand Up @@ -1636,7 +1636,7 @@ int melee_attack::player_apply_weapon_bonuses(int damage)
{
if (weapon && (weapon->base_type == OBJ_WEAPONS
&& !is_range_weapon(*weapon)
|| item_is_rod(*weapon)))
|| weapon->base_type == OBJ_STAVES))
{
int wpn_damage_plus = weapon->plus2;

Expand Down

0 comments on commit d2aae25

Please sign in to comment.