Skip to content

Commit

Permalink
Corrected the MTF_MATK, it should only give Fix MATK instead of MATK …
Browse files Browse the repository at this point in the history
…Rate
  • Loading branch information
Jedzkie committed Jan 5, 2016
1 parent ada9062 commit 54e56b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map/status.c
Expand Up @@ -4952,7 +4952,7 @@ unsigned short status_calc_matk(struct block_list *bl, struct status_change *sc,
if (sc->data[SC_MOONLIT_SERENADE])
matk += matk * sc->data[SC_MOONLIT_SERENADE]->val2 / 100;
if (sc->data[SC_MTF_MATK])
matk += matk * sc->data[SC_MTF_MATK]->val1 / 100;
matk += sc->data[SC_MTF_MATK]->val1;
if (sc->data[SC_MYSTICSCROLL])
matk += matk * sc->data[SC_MYSTICSCROLL]->val1 / 100;

Expand Down

0 comments on commit 54e56b1

Please sign in to comment.