summaryrefslogtreecommitdiff
path: root/src/map/npc_chat.c
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-05-02 20:23:30 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-05-02 20:23:30 +0000
commit055a8778bc0b8cd87709af7517c5955bcc8f898c (patch)
tree32d143836edcbd986560c681f7762156dc22dbd8 /src/map/npc_chat.c
parent355f81a410eeb48e29d21574896f2fac02fc8a95 (diff)
downloadhercules-055a8778bc0b8cd87709af7517c5955bcc8f898c.tar.gz
hercules-055a8778bc0b8cd87709af7517c5955bcc8f898c.tar.bz2
hercules-055a8778bc0b8cd87709af7517c5955bcc8f898c.tar.xz
hercules-055a8778bc0b8cd87709af7517c5955bcc8f898c.zip
- Fixed some typos in the script command documentation. (bugreport:2547)
- Fixed a misleading message in the custom Job Changer. (bugreport:682) - Updated some NPC's facing directions. (bugreport:3030) - Added missing newline in some ShowWarning(). (bugreport:2940) - Fixed SC_BOSSMAPINFO time being off by 1 minutes (bugreport:3035) Now, the seconds are rounded up to the next whole minute. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13713 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc_chat.c')
-rw-r--r--src/map/npc_chat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc_chat.c b/src/map/npc_chat.c
index 4278c33f5..99fa40a20 100644
--- a/src/map/npc_chat.c
+++ b/src/map/npc_chat.c
@@ -389,7 +389,7 @@ int npc_chat_sub(struct block_list* bl, va_list ap)
lst = nd->u.scr.label_list;
ARR_FIND(0, nd->u.scr.label_list_num, i, strncmp(lst[i].name, e->label, sizeof(lst[i].name)) == 0);
if (i == nd->u.scr.label_list_num) {
- ShowWarning("Unable to find label: %s", e->label);
+ ShowWarning("Unable to find label: %s\n", e->label);
return 0;
}