diff --git a/files/helpers/marsify.py b/files/helpers/marsify.py index f6876c234b..666260f57f 100644 --- a/files/helpers/marsify.py +++ b/files/helpers/marsify.py @@ -6,7 +6,7 @@ def marsify(text): for x in text.split(' '): new_text += f'{x} ' x = x.lower() - if len(x) > 4 and x in marsey_mappings: + if len(x) > 3 and x in marsey_mappings: marsey = choice(marsey_mappings[x]) new_text += f':{marsey}: ' return new_text \ No newline at end of file