From 9b4926ccdc2de7cbe88d95e19aa8f0a9525360d2 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Wed, 31 Aug 2022 20:55:58 +0200 Subject: [PATCH] Fix webpack path --- src/plugins/nitroBypass.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/plugins/nitroBypass.ts b/src/plugins/nitroBypass.ts index 25c1aa66e..4831618dd 100644 --- a/src/plugins/nitroBypass.ts +++ b/src/plugins/nitroBypass.ts @@ -1,6 +1,6 @@ import { addPreSendListener, addPreEditListener } from "../api/MessageEvents"; -import { findByProps } from "../utils/webpack"; -import definePlugin from "../utils/types" +import { findByProps } from "../webpack"; +import definePlugin from "../utils/types"; export default definePlugin({ name: "Nitro Bypass", @@ -17,7 +17,7 @@ export default definePlugin({ return { match: new RegExp(`${func}:function\\(.+?}`), replace: `${func}:function (e) { return true; }` - } + }; }) }, ], @@ -26,11 +26,11 @@ export default definePlugin({ // Remove any nitro requirements for any of the streaming settings. findByProps("ApplicationStreamPresets") - .ApplicationStreamSettingRequirements - .forEach(x => { - delete x.userPremiumType; - delete x.guildPremiumTier - }); + .ApplicationStreamSettingRequirements + .forEach(x => { + delete x.userPremiumType; + delete x.guildPremiumTier; + }); addPreSendListener((_, messageObj) => { const guildId = window.location.href.split("channels/")[1].split("/")[0]; @@ -42,7 +42,7 @@ export default definePlugin({ const url = emoji.url.replace(/\?size=[0-9]+/, `?size=48`); messageObj.content = messageObj.content.replace(emojiString, ` ${url} `); } - }) + }); addPreEditListener((_, __, messageObj) => { const guildId = window.location.href.split("channels/")[1].split("/")[0]; @@ -53,6 +53,6 @@ export default definePlugin({ const url = emoji.url.replace(/\?size=[0-9]+/, `?size=48`); messageObj.content = messageObj.content.replace(emojiStr, ` ${url} `); } - }) + }); }, -}) +});