From 8e172a12319059ff56a3b8860ea61282181bf54d Mon Sep 17 00:00:00 2001 From: Richard Frost Date: Tue, 13 Feb 2024 21:45:32 -0700 Subject: [PATCH] :children_crossing: Switch new filtered word to exact match Switching to exact match method out of an abundance of caution --- src/script/lib/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/lib/config.ts b/src/script/lib/config.ts index f0d6f6fa..9fff6732 100644 --- a/src/script/lib/config.ts +++ b/src/script/lib/config.ts @@ -87,7 +87,7 @@ export default class Config { 'twat': { lists: [], matchMethod: Constants.MATCH_METHODS.EXACT, repeat: Constants.TRUE, separators: Constants.FALSE, sub: 'dumbo' }, 'twats': { lists: [], matchMethod: Constants.MATCH_METHODS.EXACT, repeat: Constants.TRUE, separators: Constants.FALSE, sub: 'dumbos' }, 'whore': { lists: [], matchMethod: Constants.MATCH_METHODS.PARTIAL, repeat: Constants.TRUE, separators: Constants.FALSE, sub: 'tramp' }, - 'wtf': { lists: [], matchMethod: Constants.MATCH_METHODS.PARTIAL, repeat: Constants.TRUE, separators: Constants.FALSE, sub: 'what' }, + 'wtf': { lists: [], matchMethod: Constants.MATCH_METHODS.EXACT, repeat: Constants.TRUE, separators: Constants.FALSE, sub: 'what' }, }; // Extending: Sub classes should pass in additional config defaults