diff options
author | malufett <malufett.eat.my.binaries@gmail.com> | 2014-01-03 13:59:09 +0800 |
---|---|---|
committer | malufett <malufett.eat.my.binaries@gmail.com> | 2014-01-03 13:59:09 +0800 |
commit | 594f64b62878e70c77de85008f1f96ca1a4fb5be (patch) | |
tree | 8cc701d595e2c2fb38cbc3c083501c3ff9425484 /src/map/status.c | |
parent | 3bda07c3983ad715009717695702ff8e799e54d7 (diff) | |
download | hercules-594f64b62878e70c77de85008f1f96ca1a4fb5be.tar.gz hercules-594f64b62878e70c77de85008f1f96ca1a4fb5be.tar.bz2 hercules-594f64b62878e70c77de85008f1f96ca1a4fb5be.tar.xz hercules-594f64b62878e70c77de85008f1f96ca1a4fb5be.zip |
Fixed Bug#7709
-http://hercules.ws/board/tracker/issue-7709-overbrand/?gopid=20445#entry20445
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, 2 insertions, 4 deletions
diff --git a/src/map/status.c b/src/map/status.c index afc00e348..d52572466 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -1746,10 +1746,8 @@ int status_check_skilluse(struct block_list *src, struct block_list *target, uin hide_flag &= ~OPTION_HIDE; else { switch ( skill_id ) { - case LG_OVERBRAND: - case LG_OVERBRAND_BRANDISH: - case LG_OVERBRAND_PLUSATK: - hide_flag &=~ OPTION_CLOAK|OPTION_CHASEWALK; + case MO_ABSORBSPIRITS: // it works when already casted and target suddenly hides. + hide_flag &= ~OPTION_HIDE; break; } } |