From ebeb580a656da5fee87e3d6a7bea794a5aba8d20 Mon Sep 17 00:00:00 2001 From: GodLesZ Date: Tue, 13 Dec 2011 11:41:04 +0000 Subject: [PATCH] Small clarification of the error message after OnTouch trigger fail (bugreport:4964) git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15088 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/npc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/npc.c b/src/map/npc.c index 8806263445..3eb92dcf6f 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -897,7 +897,7 @@ int npc_touch_areanpc(struct map_session_data* sd, int m, int x, int y) if( i == map[m].npc_num ) { if( f == 1 ) // no npc found - ShowError("npc_touch_areanpc : stray NPC cell on coordinates '%s',%d,%d\n", map[m].name, x, y); + ShowError("npc_touch_areanpc : stray NPC cell/NPC not found in the block on coordinates '%s',%d,%d\n", map[m].name, x, y); return 1; } switch(map[m].npc[i]->subtype) {