Revert "Revert "sneed" (this is supposed to be like this)"

This reverts commit 5e773f9e75.
pull/2/head
Aevann1 2022-11-19 14:49:10 +02:00
parent 3fe1d196f1
commit 2b81c4b03c
2 changed files with 2 additions and 4 deletions

View File

@ -148,8 +148,8 @@ if SITE_NAME == 'rDrama':
PROFANITIES = {
'motherfucker': 'motherlover',
'fuck': ['frick', 'fudge', 'freak'],
' ass ': [' butt ', ' backside ', ' bum '],
'fuck': 'frick',
' ass ': ' butt ',
'shitting': 'pooping',
'lmao': 'lmbo',
'damn': 'darn',

View File

@ -126,8 +126,6 @@ def sub_matcher(match:re.Match, upper=False, replace_with:Union[dict[str, str],
return match_str
else:
repl = replace_with[match_str.lower()]
if not isinstance(repl, str):
repl = random.choice(repl)
return repl if not upper or "<img" in repl else repl.upper()
def sub_matcher_upper(match, replace_with:Union[dict[str, str], dict[str, List[str]]]=SLURS):