aboutsummaryrefslogtreecommitdiff
path: root/src/commands/utilities/uuid.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/utilities/uuid.ts')
-rw-r--r--src/commands/utilities/uuid.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/utilities/uuid.ts b/src/commands/utilities/uuid.ts
index 6195edd..d842b58 100644
--- a/src/commands/utilities/uuid.ts
+++ b/src/commands/utilities/uuid.ts
@@ -1,4 +1,4 @@
-import { BushCommand, type BushMessage } from '#lib';
+import { BushCommand, type BushMessage, type BushSlashMessage } from '#lib';
export default class UuidCommand extends BushCommand {
public constructor() {
@@ -35,7 +35,7 @@ export default class UuidCommand extends BushCommand {
}
public override async exec(
- message: BushMessage,
+ message: BushMessage | BushSlashMessage,
{ ign, dashed }: { ign: { match: RegExpMatchArray; matches: any[] }; dashed: boolean }
) {
if (!ign) return await message.util.reply(`${util.emojis.error} Please enter a valid ign.`);