From 0756c3d94234cc11cea815721da89febb130127e Mon Sep 17 00:00:00 2001 From: "R. Aidan Campbell" Date: Thu, 22 Dec 2022 12:06:57 -0500 Subject: [PATCH] fix bug where RPL_BOUNCE conflicted with RPL_ISUPPORT: in practice RPL_BOUNCE has been moved to 010 --- constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.go b/constants.go index d4812ba..890f36e 100644 --- a/constants.go +++ b/constants.go @@ -98,7 +98,7 @@ const ( RPL_YOURHOST = "002" RPL_CREATED = "003" RPL_MYINFO = "004" - RPL_BOUNCE = "005" + RPL_BOUNCE = "010" RPL_ISUPPORT = "005" RPL_USERHOST = "302" RPL_ISON = "303"