1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-25 12:08:30 +00:00
* Added: Setting to disallow polls from being displayed in chat.
* Fixed: Polls not being displayed in chat. (Somehow, the setting got erased from the previous release.)
This commit is contained in:
SirStendec 2020-03-06 23:29:25 -05:00
parent 98328cfcb5
commit 0507300387
2 changed files with 10 additions and 1 deletions

View file

@ -1,7 +1,7 @@
{
"name": "frankerfacez",
"author": "Dan Salvato LLC",
"version": "4.19.0",
"version": "4.19.1",
"description": "FrankerFaceZ is a Twitch enhancement suite.",
"license": "Apache-2.0",
"scripts": {

View file

@ -274,6 +274,15 @@ export default class ChatHook extends Module {
}
});
this.settings.add('chat.banners.polls', {
default: true,
ui: {
path: 'Chat > Appearance >> Community',
title: 'Allow Polls to be displayed in chat.',
component: 'setting-check-box'
}
});
this.settings.add('chat.community-chest.show', {
default: true,
ui: {