forked from Cavemanon/SnootGame
Remove . from labels to prevent crash
This commit is contained in:
@ -1681,13 +1681,13 @@ label chapter_3:
|
||||
|
||||
python:
|
||||
#menu item text then label to jump into
|
||||
choices = [(_('Speak Up'), '.GuitarQuestionSpeakUp'),
|
||||
(_('Stay Silent'), '.GuitarQuestionStaySilent')]
|
||||
choices = [(_('Speak Up'), 'GuitarQuestionSpeakUp'),
|
||||
(_('Stay Silent'), 'GuitarQuestionStaySilent')]
|
||||
_value = renpy.display_menu(randomize_choices(choices))
|
||||
renpy.pause(0.5)
|
||||
renpy.jump(_value)
|
||||
|
||||
label .GuitarQuestionSpeakUp:
|
||||
label GuitarQuestionSpeakUp:
|
||||
|
||||
$ fangscore += 1
|
||||
|
||||
@ -1749,7 +1749,7 @@ label chapter_3:
|
||||
jump .postguitarscene
|
||||
|
||||
|
||||
label .GuitarQuestionStaySilent:
|
||||
label GuitarQuestionStaySilent:
|
||||
|
||||
"Can’t guarantee their style won’t be better than dogshit if I lose this challenge."
|
||||
|
||||
|
Reference in New Issue
Block a user