aboutsummaryrefslogtreecommitdiff
path: root/src/commands/dev/reload.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-11-28 09:27:41 -0500
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-11-28 09:27:41 -0500
commit453683b57b8ff013ff25e2aaa4aa1d2e047edcb7 (patch)
tree8b98d2f30dbb6a8448602446cfacf9091667cc33 /src/commands/dev/reload.ts
parentde4c3dcaf172804d34ae708be1ed3e75af42f4d5 (diff)
downloadtanzanite-453683b57b8ff013ff25e2aaa4aa1d2e047edcb7.tar.gz
tanzanite-453683b57b8ff013ff25e2aaa4aa1d2e047edcb7.tar.bz2
tanzanite-453683b57b8ff013ff25e2aaa4aa1d2e047edcb7.zip
a few small changes
Diffstat (limited to 'src/commands/dev/reload.ts')
-rw-r--r--src/commands/dev/reload.ts22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/commands/dev/reload.ts b/src/commands/dev/reload.ts
index f9b1867..6d030b7 100644
--- a/src/commands/dev/reload.ts
+++ b/src/commands/dev/reload.ts
@@ -5,29 +5,23 @@ export default class ReloadCommand extends BushCommand {
super('reload', {
aliases: ['reload'],
category: 'dev',
- description: {
- content: 'Reloads the bot',
- usage: ['reload'],
- examples: ['reload']
- },
+ description: 'Reloads the bot',
+ usage: ['reload'],
+ examples: ['reload'],
// args: [
// {
// id: 'fast',
+ // description: 'Whether or not to use esbuild for fast compiling.',
// match: 'flag',
- // flag: '--fast'
+ // flag: '--fast',
+ // prompt: 'Would you like to use esbuild for fast compiling?',
+ // optional: true,
+ // slashType:'BOOLEAN'
// }
// ],
ownerOnly: true,
typing: true,
slash: true,
- // slashOptions: [
- // {
- // name: 'fast',
- // description: 'Whether to use esbuild for fast compiling or not',
- // type: 'BOOLEAN',
- // required: false
- // }
- // ],
clientPermissions: (m) => util.clientSendAndPermCheck(m),
userPermissions: []
});