From 30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a Mon Sep 17 00:00:00 2001 From: megumin Date: Fri, 11 Nov 2022 22:50:09 +0000 Subject: feat: Badge API (#206) --- src/plugins/pronoundb/index.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/plugins/pronoundb') diff --git a/src/plugins/pronoundb/index.ts b/src/plugins/pronoundb/index.ts index 802ede9..39637e2 100644 --- a/src/plugins/pronoundb/index.ts +++ b/src/plugins/pronoundb/index.ts @@ -16,6 +16,7 @@ * along with this program. If not, see . */ +import { Devs } from "../../utils/constants"; import definePlugin, { OptionType } from "../../utils/types"; import PronounsAboutComponent from "./components/PronounsAboutComponent"; import PronounsChatComponent from "./components/PronounsChatComponent"; @@ -28,10 +29,7 @@ export enum PronounsFormat { export default definePlugin({ name: "PronounDB", - authors: [{ - name: "Tyman", - id: 487443883127472129n - }], + authors: [Devs.Tyman], description: "Adds pronouns to user messages using pronoundb", patches: [ // Patch the chat timestamp element -- cgit