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

Fix #601

parent b4639b0f
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4669 passed
......@@ -1522,16 +1522,14 @@ function IRCClient_do_stats(statschar) {
}
function IRCClient_do_users() {
var i, u;
var usersshown = false;
var i, u, usersshown;
this.numeric(392,':UserID Terminal Host');
usersshown=0;
for (i in system.node_list) {
if(system.node_list[i].status == NODE_INUSE) {
u=new User(system.node_list[i].useron);
this.numeric(393,format(':%-25s %-9s %-30s',u.alias,'Node'+node,
u.host_name));
this.numeric(393,format(':%-25s %-9s %-30s',u.alias,'Node'+i,u.host_name));
usersshown++;
}
}
......
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