diff --git a/public/scripts/slash-commands.js b/public/scripts/slash-commands.js index b2d64c8a5..2f86240a9 100644 --- a/public/scripts/slash-commands.js +++ b/public/scripts/slash-commands.js @@ -119,7 +119,7 @@ parser.addCommand('sync', syncCallback, [], ' – syncs user name in user-attrib parser.addCommand('lock', bindCallback, ['bind'], ' – locks/unlocks a persona (name and avatar) to the current chat', true, true); parser.addCommand('bg', setBackgroundCallback, ['background'], '(filename) – sets a background according to filename, partial names allowed, will set the first one alphabetically if multiple files begin with the provided argument string', false, true); parser.addCommand('sendas', sendMessageAs, [], ` – sends message as a specific character.
Example:
/sendas Chloe\nHello, guys!
will send "Hello, guys!" from "Chloe".
Uses character avatar if it exists in the characters list.`, true, true); -parser.addCommand('sys', sendNarratorMessage, [], '(text) – sends message as a system narrator', false, true); +parser.addCommand('sys', sendNarratorMessage, ['nar'], '(text) – sends message as a system narrator', false, true); parser.addCommand('sysname', setNarratorName, [], '(name) – sets a name for future system narrator messages in this chat (display only). Default: System. Leave empty to reset.', true, true); parser.addCommand('comment', sendCommentMessage, [], '(text) – adds a note/comment message not part of the chat', false, true); parser.addCommand('single', setStoryModeCallback, ['story'], ' – sets the message style to single document mode without names or avatars visible', true, true);