From 43f41d20fa44c774aec1a62807bcbea180ec2eb7 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Fri, 18 Nov 2022 23:29:34 +0100 Subject: [PATCH] Fix commands showing up multiple times --- src/api/Commands/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/Commands/index.ts b/src/api/Commands/index.ts index a20ac500e..9fe2eb4df 100644 --- a/src/api/Commands/index.ts +++ b/src/api/Commands/index.ts @@ -17,7 +17,7 @@ */ import { makeCodeblock } from "../../utils/misc"; -import { generateId, sendBotMessage } from "./commandHelpers"; +import { sendBotMessage } from "./commandHelpers"; import { ApplicationCommandInputType, ApplicationCommandOptionType, ApplicationCommandType, Argument, Command, CommandContext, Option } from "./types"; export * from "./commandHelpers"; @@ -136,7 +136,7 @@ export function registerCommand(command: C, plugin: string) { throw new Error(`Command '${command.name}' already exists.`); command.isVencordCommand = true; - command.id ??= generateId(); + command.id ??= `-${BUILT_IN.length}`; command.applicationId ??= "-1"; // BUILT_IN; command.type ??= ApplicationCommandType.CHAT_INPUT; command.inputType ??= ApplicationCommandInputType.BUILT_IN_TEXT;