diff options
author | GodLesZ <GodLesZ@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-13 11:41:04 +0000 |
---|---|---|
committer | GodLesZ <GodLesZ@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-13 11:41:04 +0000 |
commit | ad87c74ec7948f583e15f7ffebbd7bc027f8dc23 (patch) | |
tree | 9693272c7730d3cf94aa888b94d4c41f2623327e /src/map/npc.c | |
parent | a6a57e9e454fca911a7d1f9a027a17e50e2570a0 (diff) | |
download | hercules-ad87c74ec7948f583e15f7ffebbd7bc027f8dc23.tar.gz hercules-ad87c74ec7948f583e15f7ffebbd7bc027f8dc23.tar.bz2 hercules-ad87c74ec7948f583e15f7ffebbd7bc027f8dc23.tar.xz hercules-ad87c74ec7948f583e15f7ffebbd7bc027f8dc23.zip |
Small clarification of the error message after OnTouch trigger fail (bugreport:4964)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15088 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.c')
-rw-r--r-- | src/map/npc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 880626344..3eb92dcf6 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) { |