From 7590507d67737ac707cd780113be1d6bcb03be52 Mon Sep 17 00:00:00 2001 From: nuttylmao Date: Thu, 24 Jul 2025 08:44:37 +1000 Subject: [PATCH] Removed unnecessary "Enabled Kick Support" toggle --- horizontal-chat/script.js | 3 +-- horizontal-chat/settings/settings.json | 13 ------------- multichat-overlay/script.js | 3 +-- multichat-overlay/settings/settings.json | 13 ------------- multistream-alerts/script.js | 3 +-- multistream-alerts/settings/settings.json | 12 ------------ 6 files changed, 3 insertions(+), 44 deletions(-) diff --git a/horizontal-chat/script.js b/horizontal-chat/script.js index 28ce266..b542a94 100644 --- a/horizontal-chat/script.js +++ b/horizontal-chat/script.js @@ -51,7 +51,6 @@ const showTwitchChannelPointRedemptions = GetBooleanParam("showTwitchChannelPoin const showTwitchRaids = GetBooleanParam("showTwitchRaids", true); const showTwitchSharedChat = GetBooleanParam("showTwitchSharedChat", true); -const enableKickSupport = GetBooleanParam("enableKickSupport", false); const kickUsername = urlParams.get("kickUsername") || ""; const showKickMessages = GetBooleanParam("showKickMessages", true); // const showKickFollows = GetBooleanParam("showKickFollows", false); @@ -288,7 +287,7 @@ client.on('Fourthwall.GiftDrawEnded', (response) => { // Connect and handle Pusher WebSocket async function KickConnect() { - if (!enableKickSupport) + if (!kickUsername) return; // Channel to subscribe to (you'll need the correct channel name here) diff --git a/horizontal-chat/settings/settings.json b/horizontal-chat/settings/settings.json index 813ae48..52dbd2c 100644 --- a/horizontal-chat/settings/settings.json +++ b/horizontal-chat/settings/settings.json @@ -207,21 +207,12 @@ "defaultValue": true, "group": "Which YouTube messages do you want to see?" }, - { - "id": "enableKickSupport", - "label": "Enable Kick Support", - "description": "", - "type": "checkbox", - "defaultValue": false, - "group": "Which Kick messages do you want to see?" - }, { "id": "kickUsername", "label": "Kick Username", "description": "", "type": "text", "defaultValue": "", - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { @@ -230,7 +221,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { @@ -239,7 +229,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { @@ -248,7 +237,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { @@ -257,7 +245,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { diff --git a/multichat-overlay/script.js b/multichat-overlay/script.js index 4fcae0d..1b8274a 100644 --- a/multichat-overlay/script.js +++ b/multichat-overlay/script.js @@ -55,7 +55,6 @@ const showTwitchChannelPointRedemptions = GetBooleanParam("showTwitchChannelPoin const showTwitchRaids = GetBooleanParam("showTwitchRaids", true); const showTwitchSharedChat = GetIntParam("showTwitchSharedChat", 2); -const enableKickSupport = GetBooleanParam("enableKickSupport", false); const kickUsername = urlParams.get("kickUsername") || ""; const showKickMessages = GetBooleanParam("showKickMessages", true); // const showKickFollows = GetBooleanParam("showKickFollows", false); @@ -311,7 +310,7 @@ client.on('Fourthwall.GiftDrawEnded', (response) => { // Connect and handle Pusher WebSocket async function KickConnect() { - if (!enableKickSupport) + if (!kickUsername) return; // Channel to subscribe to (you'll need the correct channel name here) diff --git a/multichat-overlay/settings/settings.json b/multichat-overlay/settings/settings.json index 791db33..8389a86 100644 --- a/multichat-overlay/settings/settings.json +++ b/multichat-overlay/settings/settings.json @@ -336,21 +336,12 @@ "defaultValue": true, "group": "Which YouTube messages do you want to see?" }, - { - "id": "enableKickSupport", - "label": "Enable Kick Support", - "description": "", - "type": "checkbox", - "defaultValue": false, - "group": "Which Kick messages do you want to see?" - }, { "id": "kickUsername", "label": "Kick Username", "description": "", "type": "text", "defaultValue": "", - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { @@ -359,7 +350,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { @@ -368,7 +358,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { @@ -377,7 +366,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { @@ -386,7 +374,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick messages do you want to see?" }, { diff --git a/multistream-alerts/script.js b/multistream-alerts/script.js index 74f183a..563a667 100644 --- a/multistream-alerts/script.js +++ b/multistream-alerts/script.js @@ -70,7 +70,6 @@ const showTwitchRaids = GetBooleanParam("showTwitchRaids", true); const twitchRaidAction = urlParams.get("twitchRaidAction") || ""; // Which Kick alerts do you want to see? -const enableKickSupport = GetBooleanParam("enableKickSupport", false); const kickUsername = urlParams.get("kickUsername") || ""; const showKickSubs = GetBooleanParam("showKickSubs", true); const kickSubAction = urlParams.get("kickSubAction") || ""; @@ -309,7 +308,7 @@ client.on('Fourthwall.GiftDrawEnded', (response) => { // Connect and handle Pusher WebSocket async function KickConnect() { - if (!enableKickSupport) + if (!kickUsername) return; // Channel to subscribe to (you'll need the correct channel name here) diff --git a/multistream-alerts/settings/settings.json b/multistream-alerts/settings/settings.json index bbf9af4..87cb412 100644 --- a/multistream-alerts/settings/settings.json +++ b/multistream-alerts/settings/settings.json @@ -363,21 +363,12 @@ "showIf": "showYouTubeMemberships", "group": "Which YouTube alerts do you want to see?" }, - { - "id": "enableKickSupport", - "label": "Enable Kick Support", - "description": "", - "type": "checkbox", - "defaultValue": false, - "group": "Which Kick alerts do you want to see?" - }, { "id": "kickUsername", "label": "Kick Username", "description": "", "type": "text", "defaultValue": "", - "showIf": "enableKickSupport", "group": "Which Kick alerts do you want to see?" }, { @@ -386,7 +377,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick alerts do you want to see?" }, { @@ -404,7 +394,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick alerts do you want to see?" }, { @@ -422,7 +411,6 @@ "description": "", "type": "checkbox", "defaultValue": true, - "showIf": "enableKickSupport", "group": "Which Kick alerts do you want to see?" }, {