Skip to content

Commit

Permalink
Follow up to e4ab3be
Browse files Browse the repository at this point in the history
* Fixes #860 - Pre-renewal Kunai should only deal 100%+90 damage per hit. Thanks to @Playtester.
  • Loading branch information
aleos89 committed Jan 5, 2016
1 parent 887dd7e commit 8ab031f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/map/battle.c
Original file line number Diff line number Diff line change
Expand Up @@ -3621,9 +3621,11 @@ static int battle_calc_attack_skill_ratio(struct Damage wd, struct block_list *s
case NJ_KIRIKAGE:
skillratio += 100 * (skill_lv - 1);
break;
#ifdef RENEWAL
case NJ_KUNAI:
skillratio += 200;
break;
#endif
case KN_CHARGEATK: { // +100% every 3 cells of distance but hard-limited to 500%
unsigned int k = wd.miscflag / 3;

Expand Down

0 comments on commit 8ab031f

Please sign in to comment.