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. + `; } }