Skip to content

Commit

Permalink
Siroma and Imp Cards (fixes #1646)
Browse files Browse the repository at this point in the history
- Pre-re: Skill-specific cast time reductions no longer stack additively with global cast time reductions
  • Loading branch information
Playtester committed Oct 22, 2016
1 parent 04cf397 commit 6dfaa0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map/skill.c
Expand Up @@ -16195,7 +16195,7 @@ int skill_castfix(struct block_list *bl, uint16 skill_id, uint16 skill_lv) {
// Skill-specific reductions work regardless of flag
for(i = 0; i < ARRAYLENGTH(sd->skillcastrate) && sd->skillcastrate[i].id; i++) {
if (sd->skillcastrate[i].id == skill_id) {
reduce_cast_rate -= sd->skillcastrate[i].val;
time += time * sd->skillcastrate[i].val / 100;
break;
}
}
Expand Down

0 comments on commit 6dfaa0b

Please sign in to comment.