From 1defaaceb11a3bff4ddbfe814bde02012cfb071a Mon Sep 17 00:00:00 2001 From: sadan4 <117494111+sadan4@users.noreply.github.com> Date: Mon, 23 Sep 2024 02:07:01 -0400 Subject: [PATCH 1/2] FakeNitro: Fix wrongfully allowed emojis in voice calls (#2901) --- src/plugins/fakeNitro/index.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/plugins/fakeNitro/index.tsx b/src/plugins/fakeNitro/index.tsx index efc194954..2a7a0ee72 100644 --- a/src/plugins/fakeNitro/index.tsx +++ b/src/plugins/fakeNitro/index.tsx @@ -203,6 +203,15 @@ export default definePlugin({ settings, patches: [ + // Patch the emoji picker in voice calls to not be bypassed by fake nitro + { + find: "emojiItemDisabled]", + predicate: () => settings.store.enableEmojiBypass, + replacement: { + match: /CHAT/, + replace: "STATUS" + } + }, { find: ".PREMIUM_LOCKED;", group: true, From b37b0d54b4dd680ef10c639b40e21f44c8013445 Mon Sep 17 00:00:00 2001 From: lewisakura Date: Mon, 23 Sep 2024 07:11:34 +0100 Subject: [PATCH 2/2] RoleColorEverywhere: Fix unneeded restart on setting change (#2899) --- src/plugins/roleColorEverywhere/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/roleColorEverywhere/index.tsx b/src/plugins/roleColorEverywhere/index.tsx index c9ededc5e..108ed00c5 100644 --- a/src/plugins/roleColorEverywhere/index.tsx +++ b/src/plugins/roleColorEverywhere/index.tsx @@ -61,8 +61,7 @@ const settings = definePluginSettings({ type: OptionType.SLIDER, description: "Intensity of message coloring.", markers: makeRange(0, 100, 10), - default: 30, - restartNeeded: true + default: 30 }, });