From 6c3836240176eb6d174ed01281ff1dcfe5b8def3 Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Mon, 24 Oct 2022 19:18:30 -0300 Subject: [PATCH] Ignore Activities: Fix button not working (#156) explode --- .../index.ts => ignoreActivities.ts} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename src/plugins/{ignoreActivities/index.ts => ignoreActivities.ts} (98%) diff --git a/src/plugins/ignoreActivities/index.ts b/src/plugins/ignoreActivities.ts similarity index 98% rename from src/plugins/ignoreActivities/index.ts rename to src/plugins/ignoreActivities.ts index eb956e45..cc1538a8 100644 --- a/src/plugins/ignoreActivities/index.ts +++ b/src/plugins/ignoreActivities.ts @@ -16,11 +16,11 @@ * along with this program. If not, see . */ -import { DataStore } from "../../api"; -import { lazyWebpack } from "../../utils"; -import { Devs } from "../../utils/constants"; -import definePlugin from "../../utils/types"; -import { filters } from "../../webpack"; +import { DataStore } from "../api"; +import { lazyWebpack } from "../utils"; +import { Devs } from "../utils/constants"; +import definePlugin from "../utils/types"; +import { filters } from "../webpack"; interface MatchAndReplace { match: RegExp; @@ -54,7 +54,7 @@ export default definePlugin({ /** Create an easily accessable variable to use the game props and then replace the boolean to determine if the button is activated or not with our custom function */ { match: /((.)=this\.props\.game)(.{1,70})=.{1,2}overlay/, replace: "$1,IgnoreActivities_gameProps=$2$3=Vencord.Plugins.plugins.IgnoreActivities.isActivityEnabled(IgnoreActivities_gameProps)" }, /** Change the handler for clicking the button */ - { match: /.\.handleOverlayToggle/, replace: "() => Vencord.Plugins.plugins.IgnoreActivities.handleActivityToggle(gameProps)" }, + { match: /.\.handleOverlayToggle/, replace: "() => Vencord.Plugins.plugins.IgnoreActivities.handleActivityToggle(IgnoreActivities_gameProps)" }, /** Change the button on component to our custom */ { match: /(\.createElement\()(.{2})\..(.{1,50}\.overlayToggleIconOn)/, replace: "$1$2.IgnoreActivities_toggleOn$3" }, /** Change the button off component to our custom */