diff options
Diffstat (limited to 'message.c')
-rw-r--r-- | message.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -411,6 +411,13 @@ int processservermessage(SSL *server_ssl, char *str, struct client *clients, int // Relay to all clients sendtoallclients(clients, str, sourcefd, settings); + // Write to replay log if replay logging enabled + if (settings->replaylogging) { + writereplayline(str, settings->basedir); + } + + // TODO - Is there a way to log nick changes to the normal log despite not tracking channels or nicks in each channel? + free(svrprefixcopy); return 1; } |