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

Sync-up the node status flag output with presence_lib.js

parent f1ba19ad
Branches
Tags
No related merge requests found
......@@ -665,8 +665,10 @@ void sbbs_t::printnodedat(uint number, node_t* node)
outchar('A');
if(node->misc&NODE_LOCK)
outchar('L');
if(node->misc&(i&(NODE_MSGW|NODE_NMSG)))
if(node->misc&(i&(NODE_MSGW)))
outchar('M');
if(node->misc&(i&(NODE_NMSG)))
outchar('N');
if(node->misc&(i&NODE_POFF))
outchar('P');
outchar(')');
......@@ -683,8 +685,6 @@ void sbbs_t::printnodedat(uint number, node_t* node)
outchar('R');
if(node->misc&NODE_UDAT)
outchar('U');
if(node->status==NODE_QUIET)
outchar('Q');
if(node->misc&NODE_EVENT)
outchar('E');
if(node->misc&NODE_DOWN)
......@@ -693,6 +693,8 @@ void sbbs_t::printnodedat(uint number, node_t* node)
outchar('C');
if(node->misc&NODE_FCHAT)
outchar('F');
if(node->status==NODE_QUIET)
outchar('Q');
outchar(']');
}
if(node->errors && SYSOP) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment