diff options
Diffstat (limited to 'src/commands/fun/dice.ts')
-rw-r--r-- | src/commands/fun/dice.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/fun/dice.ts b/src/commands/fun/dice.ts index 5941564..99871c2 100644 --- a/src/commands/fun/dice.ts +++ b/src/commands/fun/dice.ts @@ -1,4 +1,4 @@ -import { BotCommand, clientSendAndPermCheck, type CommandMessage, type SlashMessage } from '#lib'; +import { BotCommand, type CommandMessage, type SlashMessage } from '#lib'; export default class DiceCommand extends BotCommand { public constructor() { @@ -8,7 +8,7 @@ export default class DiceCommand extends BotCommand { description: 'Roll virtual dice.', usage: ['dice'], examples: ['dice'], - clientPermissions: (m) => clientSendAndPermCheck(m), + clientPermissions: [], userPermissions: [], slash: true }); |