fix fag slur filter

remotes/1693045480750635534/spooky-22
Aevann1 2022-07-17 19:18:52 +02:00
parent b9ce8b31bd
commit 565b5c842a
1 changed files with 5 additions and 2 deletions

View File

@ -51,7 +51,6 @@ if SITE_NAME == 'rDrama':
"newfag": "newstrag",
"oldfag": "oldstrag",
"faggot": "cute twink",
"fag": "cute twink",
"pedophile": "libertarian",
"kill yourself": "keep yourself safe",
"nigger": "BIPOC",
@ -99,12 +98,16 @@ if SITE_NAME == 'rDrama':
" kys": " keep yourself safe",
">kys": ">keep yourself safe",
" fag": " cute twink",
">fag": ">cute twink",
}
else:
SLURS = {
"faggot": "cute twink",
"fag": "cute twink",
"nigger": "🏀"
" fag": " cute twink",
">fag": ">cute twink",
}
single_words = "|".join([slur.lower() for slur in SLURS.keys()])