diff options
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 70da31b53..bb1b6f964 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -8455,6 +8455,11 @@ void clif_parse_WisMessage(int fd, struct map_session_data* sd) snprintf(output, ARRAYLENGTH(output), msg_txt(386), sd->status.name, message); intif_announce(output, strlen(output) + 1, 0xFE000000, 0); } + + // Chat logging type 'M' / Main Chat + if( log_config.chat&1 || (log_config.chat&32 && !(agit_flag && log_config.chat&64)) ) + log_chat("M", 0, sd->status.char_id, sd->status.account_id, mapindex_id2name(sd->mapindex), sd->bl.x, sd->bl.y, NULL, message); + return; } |