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

Add support for /STATS Q

parent d3cd0f83
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -1524,6 +1524,16 @@ function IRCClient_do_stats(statschar) { ...@@ -1524,6 +1524,16 @@ function IRCClient_do_stats(statschar) {
)); ));
} }
break; break;
case "Q":
case "q":
for (i in QLines) {
this.numeric(217, format(
"Q %s * * * * :%s",
QLines[i].nick,
QLines[i].reason ? QLines[i].reason : "No Reason"
));
}
break;
case "U": case "U":
for (i in ULines) { for (i in ULines) {
this.numeric(246, format( this.numeric(246, format(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment