diff --git a/README.md b/README.md index 792f9434..7901e52a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch ### Extra included plugins
-151 additional plugins +150 additional plugins ### All Platforms - AllCallTimers by MaxHerbold & D3SOX @@ -58,7 +58,6 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch - FrequentQuickSwitcher by Samwich - FriendshipRanks by Samwich - FriendTags by Samwich -- FullUserInChatbox by sadan - GensokyoRadioRPC by RyanCaoDev & Prince527 - GifCollections by Aria & Creations - GifRoulette by Samwich diff --git a/src/equicordplugins/fullUserInChatbox/index.tsx b/src/equicordplugins/fullUserInChatbox/index.tsx deleted file mode 100644 index b51c488c..00000000 --- a/src/equicordplugins/fullUserInChatbox/index.tsx +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Vencord, a Discord client mod - * Copyright (c) 2024 Vendicated and contributors - * SPDX-License-Identifier: GPL-3.0-or-later - */ - -import { Devs } from "@utils/constants"; -import definePlugin from "@utils/types"; -import { findComponentByCodeLazy } from "@webpack"; - -const NormalMessageComponent = findComponentByCodeLazy(".USER_MENTION)"); - -export default definePlugin({ - name: "FullUserInChatbox", - description: "Puts the full user mention object in the chatbox", - authors: [Devs.sadan], - - patches: [ - { - find: "#{intl::UNKNOWN_ROLE_PLACEHOLDER})]", - replacement: { - match: /(hidePersonalInformation.*?)return/, - replace: "$1return $self.patchChatboxMention(arguments[0]);" - } - } - ], - - patchChatboxMention(props: any) { - return ; - }, -});