1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-05 04:13:14 +02:00

Fix numeric 470, is now:

:irc.test.net 470 nickname #originalchannel #redirect :[Link] Cannot join channel #originalchannel (you are banned) -- transferring you to #redirect

Previously this was completely incorrect:
:irc.test.net 470 nickname [Link] Cannot join channel ..etc...
(yeah even lacking a colon)
This commit is contained in:
Bram Matthys
2019-11-27 11:38:48 +01:00
parent 332ca4898c
commit ae30978680
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -514,7 +514,7 @@ static char *replies[] = {
/* 467 ERR_KEYSET */ "%s :Channel key already set",
/* 468 ERR_ONLYSERVERSCANCHANGE */ "%s :Only servers can change that mode",
/* 469 ERR_LINKSET */ "%s :Channel link already set",
/* 470 ERR_LINKCHANNEL */ "[Link] %s has become full, so you are automatically being transferred to the linked channel %s",
/* 470 ERR_LINKCHANNEL */ "%s %s :[Link] %s has become full, so you are automatically being transferred to the linked channel %s",
/* 471 ERR_CHANNELISFULL */ "%s :Cannot join channel (+l)",
/* 472 ERR_UNKNOWNMODE */ "%c :is unknown mode char to me",
/* 473 ERR_INVITEONLYCHAN */ "%s :Cannot join channel (+i)",