Patch for the Steam version to re-enable incest.
Delete all *.rpyc files from the /game folder and overwrite any *.rpy files with the files from the archive.
Mega
Unofficial of course, and not endorsed by the dev.
You actually don't need to remove RPYC files at all. The RPYCs are the files Ren'Py actually uses to run a VN. It's why sometimes you can find a game that has RPYs removed and it still runs with RPYCs. (The RPYCs being obfuscated makes it slightly more work to modify a game's code, although obviously with tools like UnRen or similar, this almost makes this Ren'Py feature moot.)
When you start any Ren'Py game, the engine looks for RPY files and compiles each of those into RPYCs so the game will run more efficiently. If there is no existing RPYC with a name matching an RPY it finds, that gets created; if an RPYC is found that has the same name
and content as an RPY file, it moves on as there's no need to create a new RPYC; if an RPYC is found that shares the same name as an RPY but
does not match its contents, the RPYC is overwritten with the updated content of the RPY file.
Of course, all of the above is with the understanding still that RPYCs are compiled, so "matching" is the content as it would exist in an RPYC's uncompiled format. You can read more about this
You must be registered to see the links
and
You must be registered to see the links
. So, nobody needs to delete the RPYCs, since they will be either created, ignored, or overwritten anyway. Having the RPYs is sufficient for things like patches.