From 24d21f4410cd42ca643be681f55a127dde265486 Mon Sep 17 00:00:00 2001 From: Tricked <72335827+SkyBlockDev@users.noreply.github.com> Date: Sat, 18 Dec 2021 20:43:39 +0100 Subject: [PATCH] fix issue --- src/struct/commands/CommandHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/struct/commands/CommandHandler.ts b/src/struct/commands/CommandHandler.ts index 5951d6e..e56e82f 100644 --- a/src/struct/commands/CommandHandler.ts +++ b/src/struct/commands/CommandHandler.ts @@ -371,7 +371,7 @@ export class NaticoCommandHandler extends NaticoHandler< */ async enableSlash(guildID?: bigint) { const slashed = this.slashed(); - await upsertSlashCommands(this.client, slashed, guildID); + await this.client.helpers.upsertApplicationCommands(slashed, guildID); return slashed; } slashed(): any {