aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/api/Commands/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/Commands/index.ts b/src/api/Commands/index.ts
index a20ac50..9fe2eb4 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<C extends Command>(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;