diff --git a/src/plugins/moreCommands/index.tsx b/src/plugins/moreCommands/index.tsx index 88a8f22d..c167fe2f 100644 --- a/src/plugins/moreCommands/index.tsx +++ b/src/plugins/moreCommands/index.tsx @@ -17,7 +17,7 @@ */ import { ApplicationCommandInputType, ApplicationCommandOptionType, findOption, OptionalMessageOption, RequiredMessageOption, sendBotMessage } from "@api/Commands"; -import { Devs, EquicordDevs } from "@utils/constants"; +import { Devs } from "@utils/constants"; import definePlugin from "@utils/types"; @@ -32,7 +32,7 @@ function mock(input: string): string { export default definePlugin({ name: "MoreCommands", description: "Echo, Lenny, Mock, and More", - authors: [Devs.Arjix, Devs.echo, Devs.Samu, EquicordDevs.ExoDev], + authors: [Devs.Arjix, Devs.echo, Devs.Samu], commands: [ { name: "echo", diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 79dcbecf..ac407800 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -984,10 +984,6 @@ export const EquicordDevs = Object.freeze({ name: "vappstar", id: 747192967311261748n }, - ExoDev: { - name: "ExoDev", - id: 1325655837003223137n - }, voidbbg: { name: "voidbbg", id: 117126234588184582n @@ -1020,6 +1016,10 @@ export const EquicordDevs = Object.freeze({ name: "S€th", id: 1273447359417942128n }, + SteelTech: { + name: "SteelTech", + id: 1344190786476183643n + }, } satisfies Record); // iife so #__PURE__ works correctly