I have this RenPy code:
label name:
$ mcname = renpy.input("What's your name?", default = "Sebastian")
$ mcname = mcname.strip()
if mcname == "":
$ mcname = "Sebastian"
if mcname == "Matthias":
jump twins
label twins:
show matthias glitch
Matthias "ℸ ̣ ⍑ᒷ∷ᒷ ᓵᔑリℸ ̣ ʖᒷ ℸ ̣ ∴ ⎓ ⚍ᓭ, ℸ ̣ ⍑ᒷ∷ᒷ ∴リℸ ̣ ʖᒷ ℸ ̣ ∴ ⎓ ⚍ᓭ"
return
How can I make it so that, if the player chooses the name "Matthias", it triggers a quick end?