From 5d6de11a4caa1acddfaccfd0393730f0244e0912 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sun, 9 Jan 2022 19:30:01 +0100 Subject: [PATCH] commands: simplify /who usage string As per https://modern.ircdocs.horse/#who-message --- commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.js b/commands.js index 399696c..83d0f76 100644 --- a/commands.js +++ b/commands.js @@ -393,7 +393,7 @@ export default { execute: (app, args) => givemode(app, args, "+v"), }, "who": { - usage: "[ [o]]", + usage: "", description: "Retrieve a list of users", execute: (app, args) => { getActiveClient(app).send({ command: "WHO", params: args });