1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-12 19:14:46 +02:00
k
: ----------------------------------------------------------------------
This commit is contained in:
stskeeps
2000-07-16 10:31:38 +00:00
parent 56663f23e1
commit 0a7b6dfc3a
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -451,3 +451,4 @@
- Added protection against webproxies
- Fixed TKL?
- Added SJ3, removed the old
- SJ3 bugfix
+2 -2
View File
@@ -5131,7 +5131,7 @@ void send_channel_modes_sjoin3(cptr, chptr)
else
if (nopara)
{
ircsprintf(buf, "%s %ld %s %s",
ircsprintf(buf, "%s %ld %s %s :",
(IsToken(cptr) ? TOK_SJOIN : MSG_SJOIN),
chptr->creationtime, chptr->chname, modebuf);
@@ -5139,7 +5139,7 @@ void send_channel_modes_sjoin3(cptr, chptr)
else
if (!nopara && !nomode)
{
ircsprintf(buf, "%s %ld %s %s %s",
ircsprintf(buf, "%s %ld %s %s %s :",
(IsToken(cptr) ? TOK_SJOIN : MSG_SJOIN),
chptr->creationtime, chptr->chname, modebuf, parabuf);
}