Skip to content

Commit

Permalink
Fixes Dancer' song Service for you
Browse files Browse the repository at this point in the history
Corrected Max SP and Regeneration bonus from Dancing lesson. Thanks to Kyeme.

Bug report 7914 http://hercules.ws/board/tracker/issue-7914-gypsy-kiss-service-for-you/
  • Loading branch information
csnv committed Sep 3, 2014
1 parent ca9b662 commit f28a65e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/map/skill.c
Original file line number Diff line number Diff line change
Expand Up @@ -11013,8 +11013,8 @@ struct skill_unit_group* skill_unitsetting(struct block_list *src, uint16 skill_
val1 = 15+skill_lv+(st->int_/10); // MaxSP percent increase TO-DO: this INT bonus value is guessed
val2 = 20+3*skill_lv+(st->int_/10); // SP cost reduction
if(sd){
val1 += pc->checkskill(sd,DC_DANCINGLESSON); //TO-DO This bonus value is guessed
val2 += pc->checkskill(sd,DC_DANCINGLESSON); //TO-DO Should be half this value
val1 += (pc->checkskill(sd,DC_DANCINGLESSON) + 1) / 2;
val2 += (pc->checkskill(sd,DC_DANCINGLESSON) + 1) / 2;
}
break;
case BA_ASSASSINCROSS:
Expand Down

0 comments on commit f28a65e

Please sign in to comment.