From 1dcdb2d7786ad6217f863db75b694d0e7b85b94c Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 28 May 2021 19:02:16 -0400 Subject: [PATCH] Add /lusers command --- commands.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/commands.js b/commands.js index 1b507c2..9389410 100644 --- a/commands.js +++ b/commands.js @@ -162,6 +162,13 @@ export default { ban.execute(app, args); }, }, + "lusers": { + usage: "[ []]", + description: "Requests user statistics about the network", + execute: (app, args) => { + getActiveClient(app).send({ command: "LUSERS", params: args }); + }, + }, "me": { usage: "", description: "Send an action message to the current buffer",