diff --git a/files/helpers/marsify.py b/files/helpers/marsify.py index e83046548..949d6f3d1 100644 --- a/files/helpers/marsify.py +++ b/files/helpers/marsify.py @@ -7,7 +7,7 @@ def marsify(text): for x in text.split(' '): new_text += f'{x} ' x = x.lower() - if len(x) > 3 and x in marsey_mappings: + if len(x) >= 5 and x in marsey_mappings: marsey = choice(marsey_mappings[x]) new_text += f':{marsey}: ' return new_text