What it says in the title:
pc "Test, test. Test!! test." # works $ renpy.say(pc, "Test, test. Test!! test.") # does not work $ renpy.say(pc, speechPauses.add_speech_pauses("Test, test. Test!! test.")) # works
As best as I can tell, this is because renpy.say ignores the config.say_menu_text_filter setting. Is there some parameter I can pass to get expected behavior, or am I stuck wrapping everything said in a python block with speechPauses.add_speech_pauses?