Messages
messages
are used to customise JellyCommands
responses.
Unknown Command
If JellyCommands recieves an unknown command, it will respond to it with a configurable message. This can be set with the unknownCommand
option. For example:
const client = new JellyCommands({ messages: { unknownCommand: { embeds: [ { color: 'RANDOM', title: 'Unknown Command', }, ], }, },});