diff options
author | malufett <malufett.eat.my.binaries@gmail.com> | 2013-07-28 21:56:26 +0800 |
---|---|---|
committer | malufett <malufett.eat.my.binaries@gmail.com> | 2013-07-28 21:56:26 +0800 |
commit | 4f441379e35619da60ddd94d44d3a5b5bb8a49b4 (patch) | |
tree | eac5a553227a3e09fe7ae5bd15c06d64e76c1930 /src/map/status.c | |
parent | 3e9103253389f391249167614feb0e1214e8c9d6 (diff) | |
download | hercules-4f441379e35619da60ddd94d44d3a5b5bb8a49b4.tar.gz hercules-4f441379e35619da60ddd94d44d3a5b5bb8a49b4.tar.bz2 hercules-4f441379e35619da60ddd94d44d3a5b5bb8a49b4.tar.xz hercules-4f441379e35619da60ddd94d44d3a5b5bb8a49b4.zip |
Fixed Bug#7576
-Where AB_CANTO is not working properly with MADO equip target.
Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com>
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/status.c b/src/map/status.c index 4c5b5c7c2..a8b61f2d6 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6711,17 +6711,17 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val if(sc->data[SC_DEC_AGI]) return 0; - case SC_INC_AGI: case SC_CONCENTRATION: case SC_SPEARQUICKEN: case SC_TRUESIGHT: case SC_WINDWALK: case SC_CARTBOOST: case SC_ASSNCROS: - if (sc->data[SC_QUAGMIRE]) - return 0; if(sc->option&OPTION_MADOGEAR) - return 0;//Mado is immune to increase agi, wind walk, cart boost, etc (others above) [Ind] + return 0;//Mado is immune to wind walk, cart boost, etc (others above) [Ind] + case SC_INC_AGI: + if (sc->data[SC_QUAGMIRE]) + return 0; break; case SC_CLOAKING: //Avoid cloaking with no wall and low skill level. [Skotlex] |