diff options
Diffstat (limited to 'src/commands/utilities/hash.ts')
-rw-r--r-- | src/commands/utilities/hash.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/utilities/hash.ts b/src/commands/utilities/hash.ts index f47c388..6e8c37f 100644 --- a/src/commands/utilities/hash.ts +++ b/src/commands/utilities/hash.ts @@ -1,4 +1,4 @@ -import { BushCommand, type CommandMessage } from '#lib'; +import { BushCommand, clientSendAndPermCheck, type CommandMessage } from '#lib'; import assert from 'assert'; import crypto from 'crypto'; import { ApplicationCommandOptionType } from 'discord.js'; @@ -25,7 +25,7 @@ export default class HashCommand extends BushCommand { slashType: ApplicationCommandOptionType.String } ], - clientPermissions: (m) => util.clientSendAndPermCheck(m), + clientPermissions: (m) => clientSendAndPermCheck(m), userPermissions: [] }); } |