forked from rDrama/rDrama
1
0
Fork 0

fix owoify being case-sensitive

master
Aevann 2023-11-10 17:38:21 +02:00
parent 1b7c1e51c6
commit 346139aa96
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def owoify(source, chud_phrase):
return ''.join(result_strings)
def owoify_map_token_custom(token, chud_words):
if token.word in chud_words:
if token.word.lower() in chud_words:
return token
for pattern in OWO_EXCLUDE_PATTERNS: