Continuity errors

Neu

Member
Jul 27, 2021
17
8
If you win the fight against Tollus and choose "Pursue", pc walks back to the temple alone. However, when the portal explodes, Cait is nearby and unconscious. Whether you choose Comfort or Pursue, Cait would have been away.

Cait is unconscious only when losing to Tollus. In the function TutTollusCombine,
JavaScript:
1!==flags.TUT_CAIT_COMFORT?textify(m||(m=$(["Cait is beside you, face down on the ground and breathing hard
I think it could be changed to:
JavaScript:
1!==flags.BEAT_TOLLUS?textify(m||(m=$(["Cait is beside you, face down on the ground and breathing hard

And in function TutWakeUp3
JavaScript:
1===flags.TUT_CAIT_COMFORT?"after I left?":"? I know something happened to you between when I blacked out and when I woke up after. Didn't it?"
could be:
JavaScript:
1===flags.TUT_CAIT_COMFORT?"after I left?":1!==flags.BEAT_TOLLUS?:"? I know something happened to you between when I blacked out and when I woke up after. Didn't it?":"?"

There's an extra space after temple.
Do you... do you remember what happened at the temple ',
should be
Do you... do you remember what happened at the temple',

In TutWakeUp4
JavaScript:
1!==flags.TUT_CAIT_COMFORT?"woke up in":"came running back to"
could be
JavaScript:
1!==flags.BEAT_TOLLUS?"woke up in":"came running back to"
 
Last edited:

Neu

Member
Jul 27, 2021
17
8
When getting information from Evergreen, If you offer to knock her up and take Cait along for a threesome, the wrap up text says:
A few hours later, you make your way downstairs with Evergreen on your arm, only to find Cait lightly dozing on the witch's divan.
The correct scene has the player walking with Evergreen and Cait:
A few hours later, you make your way downstairs behind your lovers. Evergreen resumes her seat once you've arrived in her sitting room, slapping Cait's plump rear on her way past.
In the function EvergreenSexCaitSandwich:
JavaScript:
addButton(0,"Next",t?EvergreenCaitPleaNo3someWrapUp:mainGameMenu,"","")
EvergreenCaitPleaNo3someWrapUp should be EvergreenCaitPlea3someWrapUp.
 

Neu

Member
Jul 27, 2021
17
8
When talking to Kinu about herself, pc asks why she changed from father|mother to papa|mama
When Kiyoko first introduced you to her, she was all very formal, calling the two of you \"[pc.mf|father|mother]\" and \"mother\"... and now it's just \"[pc.mf|papa|mama]\" and \"mama.\" It's a little odd, this shift in language...

Kinu didn't call pc father|mother when they first met. She only used father|mother if pc won the game.
I'm honored by your presence, [kinu.Dad].
Do you want to play a game of go, [kinu.Dad]?
There's no shame in losing, [kinu.Dad],
In the function KinuMeet, the above [kinu.Dad] should be replaced with [pc.mf|Father|Mother] to fix the contradiction.