summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorgepard1984 <gepard1984@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-02-19 12:38:25 +0000
committergepard1984 <gepard1984@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-02-19 12:38:25 +0000
commit3a20af5477f778a3bbbf4970818b48fbd126bbbe (patch)
tree2927720456f7c78fcab80011117941e147a017bd /src/map/clif.c
parentdfe15c95cf66e20e6b35bcd882a3b39835b6fa55 (diff)
downloadhercules-3a20af5477f778a3bbbf4970818b48fbd126bbbe.tar.gz
hercules-3a20af5477f778a3bbbf4970818b48fbd126bbbe.tar.bz2
hercules-3a20af5477f778a3bbbf4970818b48fbd126bbbe.tar.xz
hercules-3a20af5477f778a3bbbf4970818b48fbd126bbbe.zip
Fixed `/lb` and `/nlb` commands displaying additional nickname (bugreport:5351).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15615 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 3e45e7edb..8ac893916 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -11078,7 +11078,7 @@ void clif_parse_LocalBroadcast(int fd, struct map_session_data* sd)
// as the length varies depending on the command used, just block unreasonably long strings
len = mes_len_check(msg, len, CHAT_SIZE_MAX);
- sprintf(command, "@localbroadcast %s", msg);
+ sprintf(command, "@lkami %s", msg);
is_atcommand(fd, sd, command, 1);
}