summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authorJedzkie <jedzkie13@rocketmail.com>2016-01-05 14:47:41 +0800
committerJedzkie <jedzkie13@rocketmail.com>2016-01-05 14:47:41 +0800
commit54e56b12734ec868b201e22f78624bc3e23bea7e (patch)
tree14c73cd5e2941d0a7623810881d386d03dbc22d1 /src/map/status.c
parentada90628a2f377445166e8543b30f8817a6922e7 (diff)
downloadhercules-54e56b12734ec868b201e22f78624bc3e23bea7e.tar.gz
hercules-54e56b12734ec868b201e22f78624bc3e23bea7e.tar.bz2
hercules-54e56b12734ec868b201e22f78624bc3e23bea7e.tar.xz
hercules-54e56b12734ec868b201e22f78624bc3e23bea7e.zip
Corrected the MTF_MATK, it should only give Fix MATK instead of MATK Rate
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 39329d5bb..d88d163f0 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -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;