diff --git a/Changes b/Changes index bb141df43..e75a3c27a 100644 --- a/Changes +++ b/Changes @@ -451,3 +451,4 @@ - Added protection against webproxies - Fixed TKL? - Added SJ3, removed the old +- SJ3 bugfix diff --git a/src/channel.c b/src/channel.c index 3750d0eea..6ccdc9e67 100644 --- a/src/channel.c +++ b/src/channel.c @@ -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); }