Perverteer bug report #1:
In the first meeting with Nia on day 143, she asks "Did you bring anyone?". The case where you have the 3 sisters but not mom looks like this:
Code:
if game.is_special:
p "Of course, I brought all of my sisters."
else:
p "Of course, I brought [r_name], [b_name] and [l_name]."
if day142_ir_belugio and day142_ri_belugio:
p "And two other woman."
elif day142_ir_belugio:
p "And another woman."
elif day142_ri_belugio:
p "And another girl."
n "Good for you, I'm looking forward to meeting them!"
The if clause with Iris and Riley shouldn't be in the else. This is correct in the partial harem case, just below.
Above that, the full harem path doesn't mention Iris or Riley.
Bug report #2:
The "Visit Iris" choice depends on "not day142_m_belugio", but has "if day142_m_belugio" in it.
Code:
"Visit Iris" if day142_ir_belugio and not day142_m_belugio and not day143_ir_visit:
...
if day142_m_belugio:
ir "[m_name] invited me to come with her on a trip to the museum."