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

Fix for 0 TS on server-to-server MODE

parent e6bc0980
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -420,7 +420,7 @@ function Server_Work(cmdline) {
));
break;
case "MODE":
if (!p[1])
if (typeof p[1] === undefined)
break;
if (p[0][0] != "#") { /* Setting a user mode */
tmp = origin.setusermode(p[1]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment