From ef353f1d66dbf1d14e528830d267aac518ed1beb Mon Sep 17 00:00:00 2001 From: Ven Date: Sat, 1 Oct 2022 02:27:28 +0200 Subject: Better authors field (#18) --- src/plugins/viewIcons.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/plugins/viewIcons.tsx') diff --git a/src/plugins/viewIcons.tsx b/src/plugins/viewIcons.tsx index f41ae85..2ac0ab1 100644 --- a/src/plugins/viewIcons.tsx +++ b/src/plugins/viewIcons.tsx @@ -1,10 +1,11 @@ +import { Devs } from "../utils/constants"; import IpcEvents from "../utils/IpcEvents"; import definePlugin from '../utils/types'; const OPEN_URL = "Vencord.Plugins.plugins.ViewIcons.openImage("; export default definePlugin({ name: "ViewIcons", - author: "Vendicated", + authors: [Devs.Ven], description: "Makes Avatars/Banners in user profiles clickable, and adds Guild Context Menu Entries to View Banner/Icon.", openImage(url: string) { -- cgit