Skip to content
Snippets Groups Projects
Commit b56bf8ed authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Sysop can chat with nodes that aren't logged-in (at logon prompt, new users)

Be sure to let them select a node even when no nodes are technically "in use".
As requested by Nelgin in IRC (what, no gitlab issue?)
parent d60262aa
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3711 passed
...@@ -1262,7 +1262,7 @@ int sbbs_t::getnodetopage(int all, int telegram) ...@@ -1262,7 +1262,7 @@ int sbbs_t::getnodetopage(int all, int telegram)
getnodedat(i,&node,0); getnodedat(i,&node,0);
if(i==cfg.node_num) if(i==cfg.node_num)
continue; continue;
if(node.status==NODE_INUSE || (SYSOP && node.status==NODE_QUIET)) { if(node.status==NODE_INUSE || (SYSOP && node.status >= NODE_LOGON && node.status <= NODE_QUIET)) {
if(!lastnodemsg) if(!lastnodemsg)
lastnodemsg=i; lastnodemsg=i;
j++; j++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment