forked from rDrama/rDrama
1
0
Fork 0

remove unnecessary lookaround groups

master
Aevann 2023-07-01 01:52:11 +03:00
parent 67fa522b82
commit 3c07d4bcd8
1 changed files with 5 additions and 6 deletions

View File

@ -417,23 +417,22 @@ PROFANITIES = {
'bitch(?![a-z])': 'b-word',
'toilet': 'potty',
'(?<![a-z])asshole': 'butthole',
'(?<![a-z])rape(?![a-z])': 'r*pe',
'(?<![a-z])rape': 'r*pe',
'(?<![a-z])hell(?![a-z])': 'heck',
'(?<![a-z])sex(?![a-z])': 'intercourse',
'(?<![a-z])cum(?![a-z])': 'c*m',
'orgasm': 'sexual climax',
'dick': 'peepee',
'(?<![a-z])cock(?![a-z])': 'peepee',
'(?<![a-z])cocks': 'peepees',
'cock': 'peepee',
'cocks': 'peepees',
'penis': 'peepee',
'pussy': 'girl peepee',
'pussies': 'girl peepees',
'vagina(?![a-z])': 'girl peepee',
'vaginas(?![a-z])': 'girl peepees',
'vaginas': 'girl peepees',
'cunt': 'girl peepee',
'(?<![a-z])twat(?![a-z])': 'girl peepee',
'twat': 'girl peepee',
'lmao': 'lmbo',
'peacock': 'peapeepee',
}
PROFANITIES_FOR_REPLACING = {}