diff options
Diffstat (limited to 'src/map/npc.c')
-rw-r--r-- | src/map/npc.c | 7 |
1 files changed, 4 insertions, 3 deletions
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; } } |