summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index d322fc530..6e39f3a20 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -162,7 +162,21 @@ int npc_event_dequeue(struct map_session_data *sd)
{
nullpo_retr(0, sd);
- sd->npc_id=0;
+ if(sd->npc_id)
+ { //Current script is aborted.
+ if(sd->state.using_fake_npc){
+ clif_clearchar_id(sd->npc_id, 0, sd->fd);
+ sd->state.using_fake_npc = 0;
+ }
+ if (sd->st) {
+ sd->st->pos = -1;
+ script_free_stack(sd->st->stack);
+ aFree(sd->st);
+ sd->st = NULL;
+ }
+ sd->npc_id = 0;
+ }
+
if (!sd->eventqueue[0][0])
return 0; //Nothing to dequeue
@@ -1079,7 +1093,6 @@ int npc_click(struct map_session_data *sd,struct npc_data *nd)
switch(nd->bl.subtype) {
case SHOP:
clif_npcbuysell(sd,nd->bl.id);
- npc_event_dequeue(sd);
break;
case SCRIPT:
run_script(nd->u.scr.script,0,sd->bl.id,nd->bl.id);