sweetsix66
Newbie
- May 3, 2023
- 17
- 174
I don't like that this update had a mandatory scene. I'm talking about the scene where the MC grinds on Elin when they're with their mom, I'm doing the Aurora route and I'd like the option to not cheat on her +I don't do incest content in general. I'd like scenes to be optional in general but if there are mandatory scenes it should be with the chosen wife
Hi, could you please check the thing above? I'm not sure how you intended this scene but it looks like it's a bug in a code.just like in monkey business (incest, harem, pregnancy, voyeurism, romance, corruption, etc) and several new ones that fit the setting![]()
if sis_dramma == "agreed" or sis_dramma == "blackmail" or sis_dramma == "white" or sis_dramma == "violence" and elin_intro_mood < 0 or sis_ring_end > 2:
I assume scene should happen only if you have negative relations or chose forceful ring ending with Elin.
It seems how the code is written renpy pairs (sis_dramma == "violence" and elin_intro_mood < 0) while others go with or so scene happen for all scenarious even if you have good relationship and chose love ring ending.
Probably code should look something like this:
if (sis_dramma == "agreed" or sis_dramma == "blackmail" or sis_dramma == "white" or sis_dramma == "violence") and (elin_intro_mood < 0 or sis_ring_end > 2):
Last edited: