From 6d17b7c7cf00adec77c184a05181207fcd84f9c5 Mon Sep 17 00:00:00 2001 From: Richard Frost Date: Thu, 28 Mar 2019 23:15:40 -0600 Subject: [PATCH] :wrench: Make substitution mode default and add word --- src/script/lib/config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/script/lib/config.ts b/src/script/lib/config.ts index acefc16e..18c92f95 100644 --- a/src/script/lib/config.ts +++ b/src/script/lib/config.ts @@ -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 @@ -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' },