diff options
author | megumin <megumin.bakaretsurie@gmail.com> | 2022-11-11 22:50:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 23:50:09 +0100 |
commit | 30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a (patch) | |
tree | 8ee2a9e7f83ba8c3c2441636e5d122de3aa663b4 /src/plugins/pronoundb | |
parent | 62e0787cf25a76881fac79b5f3df0ebda706bb21 (diff) | |
download | Vencord-30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a.tar.gz Vencord-30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a.tar.bz2 Vencord-30ca4f1cf9cc1a4179f5c7ef5cfb47eaff83f56a.zip |
feat: Badge API (#206)
Diffstat (limited to 'src/plugins/pronoundb')
-rw-r--r-- | src/plugins/pronoundb/index.ts | 6 |
1 files changed, 2 insertions, 4 deletions
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 <https://www.gnu.org/licenses/>. */ +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 |