From 88c8f196133a694bac6023244774063332987f7b Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 23 Jan 2009 11:53:52 +0000 Subject: Added a missing break; in pc_setstat, messing up LUK increasing (see r13460) (bugreport:2697). Corrected clif_bladestop(), void function returning a value (see r13471) (bugreport:2698). Fixed npcs with touch area not stopping walk timers (see r6516) (bugreport:2700). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13480 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/npc.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/map/npc.c') diff --git a/src/map/npc.c b/src/map/npc.c index 49ffa8e89..37cf06157 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -761,11 +761,12 @@ int npc_touch_areanpc(struct map_session_data* sd, int m, int x, int y) snprintf(name, ARRAYLENGTH(name), "%s::OnTouch", map[m].npc[i]->exname); // It goes here too. exname being the unique identifier. [Lance] - if( npc_event(sd,name,0)>0 ) { - pc_stop_walking(sd,1); //Make it stop walking! + if( npc_event(sd,name,0) > 0 ) + {// failed to run OnTouch event, so just click the npc npc_click(sd,map[m].npc[i]); } - //aFree(name); + + pc_stop_walking(sd,1); //Make it stop walking! break; } } -- cgit v1.2.3-70-g09d2