diff options
author | malufett <malufett.eat.my.binaries@gmail.com> | 2014-12-26 20:13:14 +0800 |
---|---|---|
committer | malufett <malufett.eat.my.binaries@gmail.com> | 2014-12-26 20:13:14 +0800 |
commit | 6205a2c3de94df7e5177a25b735fd5f2c0e56e98 (patch) | |
tree | 4bc14da48779785775562bd2dea470c37793493e /src/map/status.c | |
parent | 6dd08befa6064a652d0d98e7cb85f0e353992dd5 (diff) | |
download | hercules-6205a2c3de94df7e5177a25b735fd5f2c0e56e98.tar.gz hercules-6205a2c3de94df7e5177a25b735fd5f2c0e56e98.tar.bz2 hercules-6205a2c3de94df7e5177a25b735fd5f2c0e56e98.tar.xz hercules-6205a2c3de94df7e5177a25b735fd5f2c0e56e98.zip |
Follow up@6dd08befa6064a652d0d98e7cb85f0e353992dd5
Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com>
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index d761e9202..3c2aeb939 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -8635,7 +8635,11 @@ int status_change_start(struct block_list *src, struct block_list *bl, enum sc_t break; case SC__ENERVATION: val2 = 20 + 10 * val1; // ATK Reduction - if ( sd ) RESET_SPIRITS(sd); + if ( sd ) { + pc->delspiritball(sd, sd->spiritball, 0); + for ( int i = SPIRITS_TYPE_CHARM_WATER; i < SPIRITS_TYPE_SPHERE; i++ ) + pc->del_charm(sd, sd->spiritcharm[i], i); + } break; case SC__GROOMY: val2 = 20 + 10 * val1; //ASPD. Need to confirm if Movement Speed reduction is the same. [Jobbie] |