From 2a94b87716d5d910254505c124918ad6ad62fc6a Mon Sep 17 00:00:00 2001 From: nuttylmao Date: Sat, 28 Jun 2025 04:13:13 +1000 Subject: [PATCH] Removed "totalGifts" as Kick.bot doesn't provide cumulative gift total --- multichat-overlay/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/multichat-overlay/script.js b/multichat-overlay/script.js index 76e7dd9..f34dab6 100644 --- a/multichat-overlay/script.js +++ b/multichat-overlay/script.js @@ -2209,8 +2209,8 @@ async function KickGifts(data) { username = `${data.user} (${data.userName})`; titleDiv.innerText = `${username} gifted ${gifts} subs to the community!`; - if (totalGifts > 0) - contentDiv.innerText = `They've gifted ${totalGifts} subs in total!`; + // if (totalGifts > 0) + // contentDiv.innerText = `They've gifted ${totalGifts} subs in total!`; AddMessageItem(instance, data.messageId); }