""" Date: 10/01/2024 Author: https://f95zone.to/members/noob-salad.763 """ init python: import re def replace(text): search = "step[ -]?(aunt|bro|family|mom|mother|nephew|sibling|sis|son)" text = re.sub(search, lambda x: x.groups()[0], text) text = re.sub(search.capitalize(), lambda x: x.groups()[0].capitalize(), text) return text define config.say_menu_text_filter = replace