From e6ab96a3eed9b4d8e35dccf4d298e1a763e29c22 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Fri, 2 May 2025 21:07:44 -0400 Subject: [PATCH] Fix Formatting --- src/equicordplugins/moreUserTags/index.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/equicordplugins/moreUserTags/index.tsx b/src/equicordplugins/moreUserTags/index.tsx index 7b3b27ae..b45dac04 100644 --- a/src/equicordplugins/moreUserTags/index.tsx +++ b/src/equicordplugins/moreUserTags/index.tsx @@ -41,14 +41,16 @@ export default definePlugin({ // Make discord actually use our tags { find: ".STAFF_ONLY_DM:", - replacement: [{ - match: /(?<=type:(\i).{10,1000}.REMIX.{10,100})default:(\i)=/, - replace: "default:$2=$self.getTagText($self.localTags[$1]);", - }, { - match: /(?<=type:(\i).{10,1000}.REMIX.{10,100})\.BOT:(?=default:)/, - replace: "$&return null;", - predicate: () => settings.store.dontShowBotTag - }, + replacement: [ + { + match: /(?<=type:(\i).{10,1000}.REMIX.{10,100})default:(\i)=/, + replace: "default:$2=$self.getTagText($self.localTags[$1]);", + }, + { + match: /(?<=type:(\i).{10,1000}.REMIX.{10,100})\.BOT:(?=default:)/, + replace: "$&return null;", + predicate: () => settings.store.dontShowBotTag + }, ], } ],