1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-07 06:40:54 +00:00
* Added: Option for controlling styles applied to action (`/me`) messages in chat.
This commit is contained in:
SirStendec 2021-04-28 16:27:58 -04:00
parent 7d040066c4
commit e7803c7db1
4 changed files with 34 additions and 6 deletions

View file

@ -933,6 +933,23 @@ export default class Chat extends Module {
}
});
this.settings.add('chat.me-style', {
default: 2,
ui: {
path: 'Chat > Appearance >> Chat Lines',
title: 'Action Style',
description: 'When someone uses `/me`, the message will be rendered in this style.',
component: 'setting-select-box',
data: [
{value: 0, title: 'No Style'},
{value: 1, title: 'Colorized (Old Style)'},
{value: 2, title: 'Italic (New Style)'},
{value: 3, title: 'Colorized Italic'}
]
}
});
this.settings.add('chat.bits.stack', {
default: 0,
ui: {