- Aug 11, 2017
- 802
- 1,292
I've been missing out for a while, so pardon me if I'm mistaken or haven't seen this information in the previous pages (I just fast-read over them), but am I correct deducing from the changelog that no new story-related content has been added?
I mean, "only" a new class, bug-fixes and balance changes, right? No new events to look out for?
Asking for the sole purpose of searching them in the new play-through, not complaining. I think this game is awesome.
Edit:
BTW, I might have found a bug, since I can't explain this behaviour otherwise.
When a character is lazy we get options to solve the issue whilst starting an adventure. One is to spank them, which checks for its outcome whether the girl is a masochist or submissive.
I cheated the fetish for a character but the outcome wouldn't change.
Looking at the code in script.rpy I am under the impression that the check shouldn't be
but
Indeed the loop we're in is:
so the variable should be char, since no girl variable is updated to pick the current girl.
I tried the fix and it seems to work.
Am I right or did I screw something up?
I mean, "only" a new class, bug-fixes and balance changes, right? No new events to look out for?
Asking for the sole purpose of searching them in the new play-through, not complaining. I think this game is awesome.
Edit:
BTW, I might have found a bug, since I can't explain this behaviour otherwise.
When a character is lazy we get options to solve the issue whilst starting an adventure. One is to spank them, which checks for its outcome whether the girl is a masochist or submissive.
I cheated the fetish for a character but the outcome wouldn't change.
Looking at the code in script.rpy I am under the impression that the check shouldn't be
Code:
if "Masochism" in girl.fetishes or "Submission" in girl.fetishes:
Code:
if "Masochism" in char.fetishes or "Submission" in char.fetishes:
Code:
for char in roster:
I tried the fix and it seems to work.
Am I right or did I screw something up?