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

Include the [F] (forced chat) flag for help in debugging forced-chat.

parent 4353e29e
Branches
Tags
No related merge requests found
......@@ -144,6 +144,7 @@ var NODE_RPCHT =(1<<10); /* Reset private chat */
var NODE_NMSG =(1<<11); /* Node message waiting (new way) */
var NODE_EXT =(1<<12); /* Extended info on node action */
var NODE_LCHAT =(1<<13); /* Being pulled into local chat */
var NODE_FCHAT =(1<<14); /* Being forced into private chat */
/********************************************/
/* Values for bbs.node_connection */
......
......@@ -88,6 +88,8 @@ function node_misc(node, is_sysop)
flags += 'D';
if(node_misc&NODE_LCHAT)
flags += 'C';
if(node_misc&NODE_FCHAT)
flags += 'F';
if(node.status == NODE_QUIET)
flags += 'Q';
if(flags)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment