1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 06:03:12 +02:00

- Merged NICKCHARS= in PROTOCTL for now, since a seperate one is not (yet!) needed,

reported by SolutechUK and psadi (#0002386).
This commit is contained in:
Bram Matthys
2005-03-04 21:00:52 +00:00
parent 25ac499c99
commit 2163d0dddf
2 changed files with 5 additions and 5 deletions
+2
View File
@@ -742,3 +742,5 @@
- Fixed a bug with /invite with no parameters (accidentily broken when +I was added)
(#0002383) reported by trystanscott.
- Fixed a bug where /SAJOIN user 0 caused a desynch, reported by trystanscott (#0002384).
- Merged NICKCHARS= in PROTOCTL for now, since a seperate one is not (yet!) needed,
reported by SolutechUK and psadi (#0002386).
+3 -5
View File
@@ -187,12 +187,10 @@ char *num = NULL;
*/
void send_proto(aClient *cptr, ConfigItem_link *aconf)
{
char buf[512];
char buf[1024];
sendto_one(cptr, "PROTOCTL NICKCHARS=%s", langsinuse);
sprintf(buf, "CHANMODES=%s%s,%s%s,%s%s,%s%s",
CHPAR1, EXPAR1, CHPAR2, EXPAR2, CHPAR3, EXPAR3, CHPAR4, EXPAR4);
sprintf(buf, "CHANMODES=%s%s,%s%s,%s%s,%s%s NICKCHARS=%s",
CHPAR1, EXPAR1, CHPAR2, EXPAR2, CHPAR3, EXPAR3, CHPAR4, EXPAR4, langsinuse);
#ifdef ZIP_LINKS
if (aconf->options & CONNECT_ZIP)
{