Skip to content

Commit

Permalink
🔧 Make substitution mode default and add word
Browse files Browse the repository at this point in the history
  • Loading branch information
richardfrost committed Mar 29, 2019
1 parent fc730e8 commit 6d17b7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/script/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default class Config {
defaultWordMatchMethod: 0,
defaultWordRepeat: false,
disabledDomains: [],
filterMethod: 0, // ['Censor', 'Substitute', 'Remove'];
filterMethod: 1, // ['Censor', 'Substitute', 'Remove'];
filterWordList: true,
globalMatchMethod: 3, // ['Exact', 'Partial', 'Whole', 'Per-Word', 'RegExp']
muteAudio: false, // Filter audio
Expand All @@ -73,6 +73,7 @@ export default class Config {
'ass': { matchMethod: 0, repeat: true, sub: 'butt' },
'asses': { matchMethod: 0, repeat: false, sub: 'butts' },
'asshole': { matchMethod: 1, repeat: true, sub: 'jerk' },
'badass': { matchMethod: 1, repeat: true, sub: 'cool' },
'bastard': { matchMethod: 1, repeat: true, sub: 'jerk' },
'bitch': { matchMethod: 1, repeat: true, sub: 'jerk' },
'christ': { matchMethod: 0, repeat: true, sub: 'deity' },
Expand Down

0 comments on commit 6d17b7c

Please sign in to comment.