1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-02-04 05:36:23 +00:00

Use a constant in the authors array

This commit is contained in:
Grzesiek11 2023-12-11 23:12:27 +01:00
parent cb1a527c99
commit 124f12e384
No known key found for this signature in database
GPG key ID: 4A5445FB68CDB5C4
2 changed files with 6 additions and 6 deletions

View file

@ -16,17 +16,13 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Devs } from "@utils/constants";
import definePlugin from "@utils/types"; import definePlugin from "@utils/types";
export default definePlugin({ export default definePlugin({
name: "IrcColors", name: "IrcColors",
description: "Makes username colors in chat unique, like in IRC clients", description: "Makes username colors in chat unique, like in IRC clients",
authors: [ authors: [Devs.Grzesiek11],
{
id: 368475654662127616n,
name: "Grzesiek11",
},
],
patches: [ patches: [
{ {
find: ".useCanSeeRemixBadge)", find: ".useCanSeeRemixBadge)",

View file

@ -399,6 +399,10 @@ export const Devs = /* #__PURE__*/ Object.freeze({
name: "maisy", name: "maisy",
id: 257109471589957632n, id: 257109471589957632n,
}, },
Grzesiek11: {
name: "Grzesiek11",
id: 368475654662127616n,
},
} satisfies Record<string, Dev>); } satisfies Record<string, Dev>);
// iife so #__PURE__ works correctly // iife so #__PURE__ works correctly