Force Incest Patch for dialogues
This game has M/S and B/S relationships but no scenes as of now. Even it is a patreon build the relationships are not censored.
However, many dialogues feel out of place. Like when you talk to your sister about your mother, you don't refer your mother with her name right? Instead you should say "Mom" or "Our mom". This really wierded me out.
So I just did a simple Regex replacement in the game folder. As the script files (ch1, ch2, ch3) ar not encrypted, it was easy. Do the following:
Backup your game folder for easy reset.
Open any editor that supports Regex (VSCode, Sublime text, Notepad++), open the game folder(VS code) or chapter files individually and do this:
In Find field(enable regex and make sure there are no spaces around):
(\s+)(d|rap|aze) "(.*)?Emma(.*)?"
In Replace Field:
$1$2 "$3Mom$4"
Now it is a bit different for Dad. "Goddess" turns into "Daddess". So use this instead:
(\s+)(d|rap|aze) "(.*)?God(?!dess)(.*)?"
In Replace Field:
$1$2 "$3Dad$4"
* I didn't just upload the modded files as the game script has many typos and it will get fixed eventually thus rendering my files outdated.
*
I don't know renpy or python otherwise maybe I could've made a runtime script that changes such strings on runtime without modifying base script. That would be the best future proof solution. If you think you can do it, feel free to do so. I will be greatly indebted to you.
Update: Thanks to oidex for making it possible. Post link here: Mommify Script