From e29902ed6642a4346ee1a614375806f3cdceb7e2 Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Mon, 9 Oct 2023 08:22:00 +0900 Subject: [PATCH] '/help slash' hint for how to batch slash commands --- public/scripts/slash-commands.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/scripts/slash-commands.js b/public/scripts/slash-commands.js index a9be5e304..fd65cae34 100644 --- a/public/scripts/slash-commands.js +++ b/public/scripts/slash-commands.js @@ -105,7 +105,10 @@ class SlashCommandParser { getHelpString() { const listItems = this.helpStrings.map(x => `
  • ${x}
  • `).join('\n'); - return `

    Slash commands:

      ${listItems}
    `; + return `

    Slash commands:

      ${listItems}
    + Slash commands can be batched into a single input by adding a pipe character | at the end, and then writing a new slash command. + `; } }