From 597a661d0b016549c9f5138823d20b97102b1e1a Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Wed, 12 Mar 2025 23:32:18 -0400 Subject: [PATCH] Disable Limit For Plugin Devs --- src/plugins/_core/supportHelper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/_core/supportHelper.tsx b/src/plugins/_core/supportHelper.tsx index 294cefa9..d15d63b2 100644 --- a/src/plugins/_core/supportHelper.tsx +++ b/src/plugins/_core/supportHelper.tsx @@ -129,7 +129,7 @@ function generatePluginList() { content += `**Enabled UserPlugins (${enabledUserPlugins.length}):**\n${makeCodeblock(enabledUserPlugins.join(", "))}`; } - if (enabledPlugins.length > 100) { + if (enabledPlugins.length > 100 && !(isPluginDev(UserStore.getCurrentUser()?.id) || isEquicordPluginDev(UserStore.getCurrentUser()?.id))) { content = "We don't support users with more than 100 plugins enabled. Please disable some and try again."; }