From 276a53169a7ae3fc25512e9943a78964269a737e Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Mon, 30 Dec 2024 00:26:44 -0500 Subject: [PATCH] Purge FullUserInChatbox For Merge Added To Vencord --- README.md | 3 +- .../fullUserInChatbox/index.tsx | 38 ------------------- 2 files changed, 1 insertion(+), 40 deletions(-) delete mode 100644 src/equicordplugins/fullUserInChatbox/index.tsx 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 ; - }, -});