1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-25 16:56: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/>.
*/
import { Devs } from "@utils/constants";
import definePlugin from "@utils/types";
export default definePlugin({
name: "IrcColors",
description: "Makes username colors in chat unique, like in IRC clients",
authors: [
{
id: 368475654662127616n,
name: "Grzesiek11",
},
],
authors: [Devs.Grzesiek11],
patches: [
{
find: ".useCanSeeRemixBadge)",

View file

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