summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authormalufett <malufett.eat.my.binaries@gmail.com>2013-06-14 01:59:38 -0700
committermalufett <malufett.eat.my.binaries@gmail.com>2013-06-14 01:59:38 -0700
commitd663d4d86a2a403764baa0de27af6f9950d9a09f (patch)
tree308d84ae13717b93daec98bc079b0d2209715d6f /src/map/script.c
parentaf26debad8ef2d756e027fa9920ef0f68522d9c9 (diff)
downloadhercules-d663d4d86a2a403764baa0de27af6f9950d9a09f.tar.gz
hercules-d663d4d86a2a403764baa0de27af6f9950d9a09f.tar.bz2
hercules-d663d4d86a2a403764baa0de27af6f9950d9a09f.tar.xz
hercules-d663d4d86a2a403764baa0de27af6f9950d9a09f.zip
Fixed Bug#7362, Bug#7363 & Bug#7355
Fixed compilation error and server console error.
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/script.c b/src/map/script.c
index b414247da..26d64726c 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -3351,7 +3351,7 @@ static void script_detach_state(struct script_state* st, bool dequeue_event)
* We're done with this NPC session, so we cancel the timer (if existent) and move on
**/
if( sd->npc_idle_timer != INVALID_TIMER ) {
- delete_timer(sd->npc_idle_timer,npc_rr_secure_timeout_timer);
+ iTimer->delete_timer(sd->npc_idle_timer,npc_rr_secure_timeout_timer);
sd->npc_idle_timer = INVALID_TIMER;
}
#endif
@@ -3392,8 +3392,8 @@ static void script_attach_state(struct script_state* st)
**/
#ifdef SECURE_NPCTIMEOUT
if( sd->npc_idle_timer == INVALID_TIMER )
- sd->npc_idle_timer = add_timer(gettick() + (SECURE_NPCTIMEOUT_INTERVAL*1000),npc_rr_secure_timeout_timer,sd->bl.id,0);
- sd->npc_idle_tick = gettick();
+ sd->npc_idle_timer = iTimer->add_timer(iTimer->gettick() + (SECURE_NPCTIMEOUT_INTERVAL*1000),npc_rr_secure_timeout_timer,sd->bl.id,0);
+ sd->npc_idle_tick = iTimer->gettick();
#endif
}
}