Remove . from labels to prevent crash

This commit is contained in:
2022-11-09 17:23:37 +11:00
parent 7793449cb0
commit b9b6d8ca8b
6 changed files with 28 additions and 28 deletions

View File

@@ -1077,13 +1077,13 @@ label chapter_9:
$ TalkedWithTrish = 0
python:
choices = [(_('Talk with Trish'), '.TalkWithTrish'),
(_('Ignore Trish'), '.IgnoreTrish')]
choices = [(_('Talk with Trish'), 'lTalkWithTrish'),
(_('Ignore Trish'), 'lIgnoreTrish')]
_value = renpy.display_menu(randomize_choices(choices))
renpy.pause(0.5)
renpy.jump(_value)
label .TalkWithTrish:
label lTalkWithTrish:
$ TalkedWithTrish = 1
@@ -1166,7 +1166,7 @@ label chapter_9:
jump .PostSpearsOfficeTrish
label .IgnoreTrish:
label lIgnoreTrish:
stop music fadeout 5
pause .5