forked from Cavemanon/SnootGame
Remove . from labels to prevent crash
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user