diff options
author | malufett <malufett.eat.my.binaries@gmail.com> | 2013-02-24 20:06:01 +0800 |
---|---|---|
committer | malufett <malufett.eat.my.binaries@gmail.com> | 2013-02-24 20:06:01 +0800 |
commit | 137cc4396d651798a95641d529955845a25a56e1 (patch) | |
tree | b04eccd22e415d4a9823a2f7677517d29047ee97 /src/map/script.c | |
parent | fa2751b503d41388cf82dbf882877db280b1bba7 (diff) | |
download | hercules-137cc4396d651798a95641d529955845a25a56e1.tar.gz hercules-137cc4396d651798a95641d529955845a25a56e1.tar.bz2 hercules-137cc4396d651798a95641d529955845a25a56e1.tar.xz hercules-137cc4396d651798a95641d529955845a25a56e1.zip |
Fixed Bug #7092
-Follow up adda8d74c3280ae1e3745591caafd9ce6e81ded7 where 'close2' is not working properly.
Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com>
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c index 8827509ba..c4ee96feb 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -4392,7 +4392,7 @@ BUILDIN_FUNC(close) if( sd == NULL ) return 0; - st->state = END; + st->state = CLOSE; clif_scriptclose(sd, st->oid); return 0; } |