diff options
author | shennetsind <ind@henn.et> | 2013-04-15 22:42:37 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-15 22:42:37 -0300 |
commit | 7a853ef214cc4f96574358759489f3769a805e4c (patch) | |
tree | 64da90dfdba908553b01158e78160dee8d23656b | |
parent | 1c9fdc0d3bbe2993ac1e8a31045ccbc60b8fbe26 (diff) | |
download | hercules-7a853ef214cc4f96574358759489f3769a805e4c.tar.gz hercules-7a853ef214cc4f96574358759489f3769a805e4c.tar.bz2 hercules-7a853ef214cc4f96574358759489f3769a805e4c.tar.xz hercules-7a853ef214cc4f96574358759489f3769a805e4c.zip |
Fixed Bug #7160
bard/dancer songs werent going off after being dispelled when character was out of song area.
http://hercules.ws/board/tracker/issue-7160-dispell-doesnt-debuff-gypsyclown-songs-when-they-die-is-this-normal/
Signed-off-by: shennetsind <ind@henn.et>
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 1d3481453..14bb7a4cb 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -6344,7 +6344,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui case SC_DONTFORGETME: case SC_FORTUNE: case SC_SERVICE4U: - if( tsc->data[i]->val4 ) //val4 = out-of-song-area + if( !tsc->data[i]->val4 ) //val4 = out-of-song-area continue; break; case SC_ASSUMPTIO: |