mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-09-17 10:16:57 +00:00
3.5.176. Ban reason stuff. :D
This commit is contained in:
parent
fbb12d726a
commit
6cf5ddc734
6 changed files with 194 additions and 38 deletions
|
@ -119,6 +119,29 @@ FFZ.settings_info.mod_card_info = {
|
|||
};
|
||||
|
||||
|
||||
FFZ.settings_info.timeout_notices = {
|
||||
type: "select",
|
||||
options: {
|
||||
0: "Disabled",
|
||||
1: "If I'm a Moderator",
|
||||
2: "Always"
|
||||
},
|
||||
|
||||
value: 1,
|
||||
process_value: function(val) {
|
||||
if ( typeof val === "string" )
|
||||
return parseInt(val) || 0;
|
||||
return val;
|
||||
},
|
||||
|
||||
no_bttv: true,
|
||||
category: "Chat Moderation",
|
||||
|
||||
name: "Display Timeout / Ban Notices",
|
||||
help: "Display notices in chat when a user is timed out or banned. (You always see your own bans.)"
|
||||
};
|
||||
|
||||
|
||||
FFZ.settings_info.mod_card_history = {
|
||||
type: "boolean",
|
||||
value: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue