Hmm, it seems that v0.17 has not only retained the squad bond bug, but it has added some more of them on top of it:
The variable is named
csquadbond
but these passages get it wrong and reference a non-existing variable:
Day 11 - Cheerleading 1
Code:
<<set $squadbond to Math.clamp($squadbond + 5, 0, 100)>>\
Day 12 - Hangout
Code:
<<set $squadbond to Math.clamp($squadbond + 5, 0, 100)>>\
Day 12 - Hangout TOD 2
Code:
<<set $squadbond to Math.clamp($squadbond - 5, 0, 100)>>\
edit: also, not a bug but a bit of inconsistency perhaps: in the passage "Day 12 - Game Cheerleader 4" while gossiping about what person MC is attracted to, picking Jessica will adjust femaleattraction +10, maleattraction -10, but admitting interest in any of the boys doesn't do the opposite, even though MC/player pretty blatantly signals here they do have interest in guys.
edit 2: if the player chooses to pretend to be a girl in talk with the coach, the game applies transgender changes twice, in two subsequent passages:
HTML:
// "Day 12 - Game Cheerleader 6"
<<elseif $d12coachmoore is 1>>\
//...
<<set $transgender to Math.clamp($transgender + 5, 0, 100)>>\
<<set $cisgender to Math.clamp($cisgender - 5, 0, 100)>>\
//...
// "Day 12 - Game Cheerleader 7"
<<if $d12coachmoore is 1>>\
<<set $transgender to Math.clamp($transgender + 5, 0, 100)>>\
<<set $cisgender to Math.clamp($cisgender - 5, 0, 100)>>\
I'm guessing this is probably unintentional and it should be happening just once.
edit 3: okay, not transforming after putting on a cheerleading skirt was already a bit funny/weird, but in this update, you can put on actual honest-to-god dress, and not just any dress but
the most girlish dress there is, and it
still doesn't cause a transformation? The curse if officially just fucking with us at his point.
edit 4: okay, this is a bug, i think. If the transformation on Day 12 causes MC to develop visible breasts, the button "Address the issue" doesn't actually allow to "address the issue" like in all other instances, but continues as if nothing has happened:
HTML:
<<elseif $recentTransformation is "breasts2">>\
<<set $afterEvent to "Day 12 - Game Cheerleader 2">>\
You look down, realizing your boobs just grew. You gasp, realizing you can't hide them anymore. This is something you have to address.
<<button "Address the issue" "Day 12 - Game Cheerleader 2">><</button>>
If i'm not mistaken that last line should be
<<button "Address the issue" "Event - Breasts">><</button>>