Fix Equibop Missing Plugins

This commit is contained in:
thororen1234 2024-11-06 01:55:57 -05:00
parent b6e6a429ec
commit 74417ea268
2 changed files with 5 additions and 6 deletions

View file

@ -140,8 +140,8 @@ export const globPlugins = kind => ({
(target === "web" && kind === "discordDesktop") ||
(target === "desktop" && kind === "web") ||
(target === "discordDesktop" && kind !== "discordDesktop") ||
(target === "vencordDesktop" && kind !== "vencordDesktop") ||
(target === "equicordDesktop" && kind !== "equicordDesktop");
(target === "vencordDesktop" && kind !== "vencordDesktop" && kind !== "equicordDesktop") ||
(target === "equicordDesktop" && kind !== "equicordDesktop" && kind !== "vencordDesktop");
if (excluded) {
const name = await resolvePluginName(fullDir, file);