diff options
Diffstat (limited to 'src/map/npc.c')
-rw-r--r-- | src/map/npc.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index b2de0af2a..87ceb8afb 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -337,19 +337,16 @@ int npc_event_do_clock(int tid, unsigned int tick, int id, int data) memcpy(&ev_tm_b,t,sizeof(ev_tm_b)); return c; } + /*========================================== * OnInitイベント実行(&時計イベント開始) *------------------------------------------*/ -int npc_event_do_oninit(void) +void npc_event_do_oninit(void) { -// int c = npc_event_doall("OnInit"); - ShowStatus("Event '"CL_WHITE"OnInit"CL_RESET"' executed with '" - CL_WHITE"%d"CL_RESET"' NPCs.\n",npc_event_doall("OnInit")); - - add_timer_interval(gettick()+100, - npc_event_do_clock,0,0,1000); + int count = npc_event_doall("OnInit"); + ShowStatus("Event '"CL_WHITE"OnInit"CL_RESET"' executed with '"CL_WHITE"%d"CL_RESET"' NPCs."CL_CLL"\n", count); - return 0; + add_timer_interval(gettick()+100,npc_event_do_clock,0,0,1000); } /*========================================== |