diff options
author | malufett <malufett.eat.my.binaries@gmail.com> | 2015-05-03 17:24:35 +0800 |
---|---|---|
committer | malufett <malufett.eat.my.binaries@gmail.com> | 2015-05-03 17:24:35 +0800 |
commit | 85b47e326ad041744606c3e71a8ca67b4b34c313 (patch) | |
tree | 830155faa45a857b318222bceabcd015909ad678 /src/map/unit.c | |
parent | ce734bfcd5eb153ea93874b4b94effb5eee91e46 (diff) | |
download | hercules-85b47e326ad041744606c3e71a8ca67b4b34c313.tar.gz hercules-85b47e326ad041744606c3e71a8ca67b4b34c313.tar.bz2 hercules-85b47e326ad041744606c3e71a8ca67b4b34c313.tar.xz hercules-85b47e326ad041744606c3e71a8ca67b4b34c313.zip |
Fixed Bug#8650
-http://hercules.ws/board/tracker/issue-8650-minstrel-poem-of-netherworld-or-despair-song-skillleffect/?gopid=25083#entry25083
Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com>
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 2dba10aeb..b44d58d9a 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1081,6 +1081,7 @@ int unit_can_move(struct block_list *bl) { || sc->data[SC_NEEDLE_OF_PARALYZE] || sc->data[SC_VACUUM_EXTREME] || (sc->data[SC_FEAR] && sc->data[SC_FEAR]->val2 > 0) + || sc->data[SC_NETHERWORLD] || (sc->data[SC_SPIDERWEB] && sc->data[SC_SPIDERWEB]->val1) || (sc->data[SC_CLOAKING] && sc->data[SC_CLOAKING]->val1 < 3 && !(sc->data[SC_CLOAKING]->val4&1)) //Need wall at level 1-2 || ( @@ -2375,6 +2376,7 @@ int unit_remove_map(struct block_list *bl, clr_type clrtype, const char* file, i status_change_end(bl, SC__MANHOLE, INVALID_TIMER); status_change_end(bl, SC_VACUUM_EXTREME, INVALID_TIMER); status_change_end(bl, SC_CURSEDCIRCLE_ATKER, INVALID_TIMER); //callme before warp + status_change_end(bl, SC_NETHERWORLD, INVALID_TIMER); } if (bl->type&(BL_CHAR|BL_PET)) { |