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:
@@ -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
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user