We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 862ca88 commit 05a2545Copy full SHA for 05a2545
js/modules/kick/module.js
@@ -24,7 +24,9 @@ const kickSubBadges = [];
24
const kickWebSocketURL = 'wss://ws-us2.pusher.com/app/32cbd69e4b950bf97679?protocol=7&client=js&version=8.4.0&flash=false';
25
26
const kicksGiftsClasses = [
27
- { min: 1, max: 99, class: 'normal-gift' },
+ { min: 1, max: 9, class: 'normal-gift' },
28
+ { min: 10, max: 49, class: 'bigger-than-10' },
29
+ { min: 50, max: 99, class: 'bigger-than-50' },
30
{ min: 100, max: 499, class: 'bigger-than-100' },
31
{ min: 500, max: 999, class: 'bigger-than-500' },
32
{ min: 1000, max: 4999, class: 'bigger-than-1000' },
js/modules/tiktok/module.js
@@ -14,7 +14,9 @@ const showTikTokSubs = getURLParam("showTikTokSubs", true);
14
const showTikTokStatistics = getURLParam("showTikTokStatistics", true);
15
16
const tiktokGiftsClasses = [
17
18
19
20
21
22
js/modules/twitch/module.js
@@ -22,12 +22,16 @@ const twitchAvatars = new Map();
const twitchPronouns = new Map();
23
const bitsGifAnimations = [
- { min: 1, max: 99, gifId: 1 },
- { min: 100, max: 999, gifId: 100 },
- { min: 1000, max: 4999, gifId: 1000 },
- { min: 5000, max: 9999, gifId: 5000 },
- { min: 10000, max: 99999, gifId: 10000 },
- { min: 100000, max: 1000000000000000, gifId: 100000 },
+ { min: 100, max: 499, class: 'bigger-than-100' },
+ { min: 500, max: 999, class: 'bigger-than-500' },
+ { min: 1000, max: 4999, class: 'bigger-than-1000' },
+ { min: 5000, max: 9999, class: 'bigger-than-5000' },
+ { min: 10000, max: 49999, class: 'bigger-than-10000' },
33
+ { min: 50000, max: 99999, class: 'bigger-than-50000' },
34
+ { min: 100000, max: 99999999999, class: 'bigger-than-100000' },
35
];
36
37
0 commit comments