diff options
Diffstat (limited to 'src/commands/dev/say.ts')
-rw-r--r-- | src/commands/dev/say.ts | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/commands/dev/say.ts b/src/commands/dev/say.ts index 9dc2632..9f16e9c 100644 --- a/src/commands/dev/say.ts +++ b/src/commands/dev/say.ts @@ -16,19 +16,10 @@ export default class SayCommand extends BushCommand { id: 'say', type: 'string', match: 'rest', - prompt: { - start: 'What would you like the bot to say?', - retry: '{error} Choose something valid to say.' - } - } - ], - slashOptions: [ - { - name: 'content', - description: 'What would you like the bot to say?', - type: 'STRING' + prompt: { start: 'What would you like the bot to say?', retry: '{error} Choose something valid to say.' } } ], + slashOptions: [{ name: 'content', description: 'What would you like the bot to say?', type: 'STRING' }], ownerOnly: true, clientPermissions: ['SEND_MESSAGES'], slash: true |