diff options
author | Haru <haru@dotalux.com> | 2015-02-02 15:02:55 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-02-02 15:02:55 +0100 |
commit | 5bb9e91e22a1b188210146579b441c9cbdd9880b (patch) | |
tree | 58035c624d15dfa3cec0cccec435985b7322537c /src/map/clif.c | |
parent | f0b095c85e75f71f425ec5f29fda8c22287185f0 (diff) | |
download | hercules-5bb9e91e22a1b188210146579b441c9cbdd9880b.tar.gz hercules-5bb9e91e22a1b188210146579b441c9cbdd9880b.tar.bz2 hercules-5bb9e91e22a1b188210146579b441c9cbdd9880b.tar.xz hercules-5bb9e91e22a1b188210146579b441c9cbdd9880b.zip |
Fixed state tracking of dialog windows when the script is suspended and resumed
- If a script was suspended, and then resumed (`sleep2`, but also
`getexp`), state tracking of dialog windows would get reset, and a
`close` or `close2` would trigger a warning even if a message box was
present.
- Special thanks to Dastgir.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index be56f06cd..1d5bf8e31 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -11268,6 +11268,7 @@ void clif_parse_NpcCloseClicked(int fd,struct map_session_data *sd) { if (!sd->npc_id) //Avoid parsing anything when the script was done with. [Skotlex] return; + sd->state.dialog = 0; npc->scriptcont(sd, RFIFOL(fd,2), true); } |