summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorFate <fate-tmw@googlemail.com>2009-10-08 05:48:29 +0000
committerFate <fate-tmw@googlemail.com>2009-10-08 05:48:29 +0000
commitd90c344f576d0be5206db7f7e7eb265a6a38019c (patch)
tree6af512881122e492f9aa2b9bece5d0395e6f740a /src/map/clif.c
parent4298d06a2e8885022f745973b3400d6c1660a531 (diff)
parent40792ad45c1929f999602dd386483ce99b0ed30a (diff)
downloadtmwa-d90c344f576d0be5206db7f7e7eb265a6a38019c.tar.gz
tmwa-d90c344f576d0be5206db7f7e7eb265a6a38019c.tar.bz2
tmwa-d90c344f576d0be5206db7f7e7eb265a6a38019c.tar.xz
tmwa-d90c344f576d0be5206db7f7e7eb265a6a38019c.zip
Merge branch 'master' of gitorious.org:tmw-eathena/mainline
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 76c38e5..f168ae5 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -6833,15 +6833,20 @@ void clif_parse_Wis(int fd, struct map_session_data *sd) { // S 0096 <len>.w <ni
*/
void clif_parse_GMmessage(int fd, struct map_session_data *sd) {
char m[512];
+ char output[200];
nullpo_retv(sd);
if ((battle_config.atc_gmonly == 0 || pc_isGM(sd)) &&
(pc_isGM(sd) >= get_atcommand_level(AtCommand_Broadcast)))
{
- intif_GMmessage(RFIFOP(fd,4), RFIFOW(fd,2)-4, 0);
strncpy(m, RFIFOP(fd,4), RFIFOW(fd,2) - 4);
m[RFIFOW(fd,2) - 4] = 0;
log_atcommand(sd, "/announce %s", m);
+
+ memset(output, '\0', sizeof(output));
+ snprintf(output, 199, "%s : %s", sd->status.name, m);
+
+ intif_GMmessage(output, strlen(output) + 1, 0);
}
}