PilotLara while the beta update is mostly nicely fixed, there's bits in the Ian/Jeremy conversation that i guess are worth a mention:
Python:
if lena_mike_dating or v11_mark_sex or lena_jack > 2 or v11_bbc == "marcel":
j "I'm not... Look, I... I've heard she's... still somewhat hung up on her ex."
else:
j "I'm not... Look, I... I've heard she's... still somewhat hung up on her ex, amongst other things."
The text bits here should be swapped, as it is Jeremy will say "amongst other things" if Lena was only cheating with Axel, yet won't mention the others if she
was sleeping around.
But more importantly, the entire cheating conversation branch:
Python:
# lena couple
if ian_lena_couple:
if lena_cheating:
// ...
if ian_cuck > 1:
// ...
if lena_cheating:
// ...
elif v11_lena_openup:
// ...
if lena_cheating:
// ...
if lena_cheating:
// ...
# lena cheating
if lena_cheating:
(lines 7132-7316) only does checks for
lena_cheating
, and not
lena_axel_desire
. This means for Lena/Ian who are in relationship the conversation does
not happen if Lena is cheating only with Axel (even if she and Axel fucked at the club and were found by Marcel) because
lena_cheating
doesn't include having sex with Axel so the check isn't passed. I don't know if this is intended or oversight, but perhaps it's worth checking with EK? Because the casual branch does include checks for cheating with Axel specifically:
Python:
# lena casual dating
elif ian_lena_dating:
// ...
# casual love
if ian_lena_love:
// ...
if lena_axel_desire or lena_mike_dating or v11_mark_sex or lena_jack > 2 or v11_bbc or v8_jeremy_sex or v10_jeremy_3some:
so there's an inconsistency here.