From e55d0d755224c764c447922d43f995dd9335b6a1 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 12 Oct 2021 19:28:44 +0200 Subject: [PATCH] Stop sending RPL_CREATED There's no point in sending this numeric if it doesn't contain any useful info. --- downstream.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/downstream.go b/downstream.go index 2521a2f..631fa5c 100644 --- a/downstream.go +++ b/downstream.go @@ -1111,11 +1111,6 @@ func (dc *downstreamConn) welcome() error { Command: irc.RPL_YOURHOST, Params: []string{dc.nick, "Your host is " + dc.srv.Hostname}, }) - dc.SendMessage(&irc.Message{ - Prefix: dc.srv.prefix(), - Command: irc.RPL_CREATED, - Params: []string{dc.nick, "Who cares when the server was created?"}, - }) dc.SendMessage(&irc.Message{ Prefix: dc.srv.prefix(), Command: irc.RPL_MYINFO,