The 0.33 optional patch fixes a lot things but reverts some typos?
Code:
- MAEVRA "Damn, you have talented toungue, human!"
+ MAEVRA "Damn you have talented toungue, human!"
- TOMAS "You can call me [TOMAS]."
+ TOMAS "You can all me [TOMAS]."
- TOMAS "Dwarf and Laehu, an interesting combination. But I'll send the message to them. Is there any other surprises I should know about?"
+ TOMAS "Dwarf and Laehu, an interesting combination. But I'll send the message to them. Is there any other surprise I should know about?"
"toungue" is misspelled there as well.
Not sure about the last one, "is there any other surprise" is an odd wording but "are there any other surprises" would be the plural.
The rest of the changes all looked correct.
e: actually there's a script bug that got put in place by the optional patch that wasn't there for the 0.33 update:
secrets.rpy
Code:
- if persistent.u33_secret1 == True:
+ if persistent.u34_secret1 == True:
$ SecretsCounter += 1
add g.make_button("Chosen", "chosen_small", xalign=0.0, yalign=-1.0)
which is really weird because secrets.rpy does fix the spelling of images/update33/u33Secret1.webp but breaks displaying it by checking for u34_secret1 at the same time.