Tutorial continuity error

Neu

Member
Jul 27, 2021
15
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 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: