quick question about the incest patch, how do i know if it`s been applied or not? i might be missing something or i`m just blind any help would be greatly appreciated
i have the same problem, patch is not working.
Check to see what
persistent.is_special is set to using the variable viewer, developer console, or
URM. Whatever you find easiest. It should be
True but I'm guessing it is
False for you. If it isn't
True, you can set it with the following command in the developer console:
Code:
persistent.is_special = True
That should be all it takes to make it work. All the taboo contents checks to see if that is true and if it isn't it will display the mundane version instead.
It appears that an older version of the game defaulted that to
False. The latest version of the game never changes it and the current taboo patch will only set the value if it has never been set before. But my persistent file had it set to
False, and likely yours as well, so it never gets changed and the taboo content doesn't work.
Edit: You can also edit the taboo.rpy file to change
default persistent.is_special = True to just
persistent.is_special = True if that's easier.