aboutsummaryrefslogtreecommitdiff
path: root/src/commands/fun/eightBall.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fun/eightBall.ts')
-rw-r--r--src/commands/fun/eightBall.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/fun/eightBall.ts b/src/commands/fun/eightBall.ts
index 66fcc45..eb5aee8 100644
--- a/src/commands/fun/eightBall.ts
+++ b/src/commands/fun/eightBall.ts
@@ -1,4 +1,4 @@
-import { BushCommand, type CommandMessage, type SlashMessage } from '#lib';
+import { BushCommand, clientSendAndPermCheck, type CommandMessage, type SlashMessage } from '#lib';
import { ApplicationCommandOptionType } from 'discord.js';
export default class EightBallCommand extends BushCommand {
@@ -21,7 +21,7 @@ export default class EightBallCommand extends BushCommand {
}
],
slash: true,
- clientPermissions: (m) => util.clientSendAndPermCheck(m),
+ clientPermissions: (m) => clientSendAndPermCheck(m),
userPermissions: []
});
}