diff options
author | malufett <malufett.eat.my.binaries@gmail.com> | 2013-02-27 03:07:16 +0800 |
---|---|---|
committer | malufett <malufett.eat.my.binaries@gmail.com> | 2013-02-27 03:07:16 +0800 |
commit | b9c79ceb5bfc86809da1d3b6154da4222cb72734 (patch) | |
tree | 5de73ff59ff725c57a3bc79a23fcc0905e1bb8c8 /src/map/status.c | |
parent | ad792f41994ce54dc9e45fbdaaf591f38fccecee (diff) | |
download | hercules-b9c79ceb5bfc86809da1d3b6154da4222cb72734.tar.gz hercules-b9c79ceb5bfc86809da1d3b6154da4222cb72734.tar.bz2 hercules-b9c79ceb5bfc86809da1d3b6154da4222cb72734.tar.xz hercules-b9c79ceb5bfc86809da1d3b6154da4222cb72734.zip |
Fixed Bug #7014 and Bug #7077
-where Chorus/Ensemble skill checks are not working properly.
-NJ_SUITON should now work properly with Kagerou/Oboro.
Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com>
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index cf2c096c9..01f3fda1e 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -7344,7 +7344,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val #endif break; case SC_SUITON: - if (!val2 || (sd && (sd->class_&MAPID_UPPERMASK) == MAPID_NINJA)) { + if (!val2 || (sd && (sd->class_&MAPID_BASEMASK) == MAPID_NINJA)) { //No penalties. val2 = 0; //Agi penalty val3 = 0; //Walk speed penalty |