Skip to content
Snippets Groups Projects
Commit 7413e07e authored by Randy Sommerfeld's avatar Randy Sommerfeld
Browse files

Don't ignore mode arguments in SJOIN

parent d6253952
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -909,7 +909,7 @@ function Server_Work(cmdline) { ...@@ -909,7 +909,7 @@ function Server_Work(cmdline) {
if (p[2]) { if (p[2]) {
this.set_chanmode( this.set_chanmode(
tmp, /* Channel object */ tmp, /* Channel object */
p.splice(2,p.length-4).join(" "), /* Channel mode */ p.splice(2,p.length-3).join(" "), /* Channel mode */
(tmp.created <= parseInt(p[0])) ? false : true /* TS */ (tmp.created <= parseInt(p[0])) ? false : true /* TS */
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment