summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-01-08 12:28:41 +0000
committerai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-01-08 12:28:41 +0000
commit88d6a3c6c1c62e2742251bc9d6877182ba01aa5b (patch)
tree9c1c98b5aa4b39bfbb4ef124f4cc4fa36325d23a /src
parent5b24315ae353c051415fd878c4a2817c94b6a245 (diff)
downloadhercules-88d6a3c6c1c62e2742251bc9d6877182ba01aa5b.tar.gz
hercules-88d6a3c6c1c62e2742251bc9d6877182ba01aa5b.tar.bz2
hercules-88d6a3c6c1c62e2742251bc9d6877182ba01aa5b.tar.xz
hercules-88d6a3c6c1c62e2742251bc9d6877182ba01aa5b.zip
* Fixed script command 'progressbar' resuming fails on second invocation, when there was no script pause between the first and second call (bugreport:4698, since r14024).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14659 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r--src/map/clif.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 0a93895a9..c820c0163 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -8724,11 +8724,13 @@ void clif_progressbar_abort(struct map_session_data * sd)
void clif_parse_progressbar(int fd, struct map_session_data * sd)
{
+ int npc_id = sd->progressbar.npc_id;
+
if( gettick() < sd->progressbar.timeout && sd->st )
sd->st->state = END;
- npc_scriptcont(sd, sd->progressbar.npc_id);
sd->progressbar.npc_id = sd->progressbar.timeout = 0;
+ npc_scriptcont(sd, npc_id);
}
/*==========================================