From 0e856059d89ae14531e6e2190819121c99ae6514 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Sun, 16 Mar 2025 00:21:46 -0400 Subject: [PATCH] Remove ExoDev at request of user Add SteelTech For Upcoming Project as well maybe I'll give a sneak peek soon :) --- src/plugins/moreCommands/index.tsx | 4 ++-- src/utils/constants.ts | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) 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