summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-06-06 18:19:17 -0300
committerEuphy <euphy@rathena.org>2013-06-15 15:39:53 -0400
commita016205274dcce516138b63ca863738fde463e0c (patch)
tree3eef0922e387acdc8d6aae5b5aa0f61cdb60b73d /src
parente2cc127fb73876b87d8ca2699ed74df016e02b6c (diff)
downloadhercules-a016205274dcce516138b63ca863738fde463e0c.tar.gz
hercules-a016205274dcce516138b63ca863738fde463e0c.tar.bz2
hercules-a016205274dcce516138b63ca863738fde463e0c.tar.xz
hercules-a016205274dcce516138b63ca863738fde463e0c.zip
Follow up f754643911ebb19eb68fb7b6ad1a864b02d111a8
Special Thanks to lighta for pointing out an issue with that. Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src')
-rw-r--r--src/map/npc.c3
-rw-r--r--src/map/pc.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index 23a3b3d84..4e1e79808 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -303,8 +303,7 @@ int npc_event_dequeue(struct map_session_data* sd)
if (!sd->eventqueue[0][0])
return 0; //Nothing to dequeue
- if (!pc_addeventtimer(sd,100,sd->eventqueue[0]))
- { //Failed to dequeue, couldn't set a timer.
+ if (!pc_addeventtimer(sd,100,sd->eventqueue[0])) { //Failed to dequeue, couldn't set a timer.
ShowWarning("npc_event_dequeue: event timer is full !\n");
return 0;
}
diff --git a/src/map/pc.c b/src/map/pc.c
index 2587cfc8f..8d0194deb 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -6637,7 +6637,7 @@ int pc_dead(struct map_session_data *sd,struct block_list *src) {
duel_reject(sd->duel_invite, sd);
}
- if (sd->npc_id)
+ if (sd->npc_id && sd->st && sd->st->state != RUN)
npc_event_dequeue(sd);
pc_setglobalreg(sd,"PC_DIE_COUNTER",sd->die_counter+1);