Skip to content

Commit

Permalink
Fix damage increase by STR of KN_BRANDISHSPEAR (RE)
Browse files Browse the repository at this point in the history
it should increase the ration by 5 for each STR point, not 1

From massive skills rebalance (1st/2nd/transclass) (2018.10.31)
  • Loading branch information
gbasso666 authored and guilherme-gm committed Nov 24, 2024
1 parent fdd0418 commit 78332b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map/battle.c
Original file line number Diff line number Diff line change
Expand Up @@ -2106,7 +2106,7 @@ static int battle_calc_skillratio(int attack_type, struct block_list *src, struc
break;
#ifdef RENEWAL
case KN_BRANDISHSPEAR:
skillratio += 300 + 100 * skill_lv + status_get_str(src);
skillratio += 300 + 100 * skill_lv + status_get_str(src) * 5;
break;
#else
case KN_BRANDISHSPEAR:
Expand Down

0 comments on commit 78332b5

Please sign in to comment.