1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-17 10:16:57 +00:00
* Added: Option to hide Community Gift Chest elements from chat.
* Fixed: Users not seeing the reason they were timed out or banned from chat.
This commit is contained in:
SirStendec 2019-09-23 12:17:51 -04:00
parent 89d243a269
commit ba1da9a774
3 changed files with 78 additions and 32 deletions

View file

@ -665,7 +665,7 @@ export default class Badges extends Module {
b = {};
for(const data of badges) {
const sid = data.setID,
bs = b[sid] = b[sid] || {__game: /_\d+$/.test(sid)};
bs = b[sid] = b[sid] || {__game: /_\d+$/.test(sid) && ! sid.includes('overwatch') };
this.twitch_badge_count++;
bs[data.version] = data;