Use statement instead of equivalent

This commit is contained in:
Gouvernathor 2023-11-16 01:43:47 +01:00
parent db30cd66d3
commit c3f753a460
1 changed files with 3 additions and 3 deletions

View File

@ -204,7 +204,7 @@ init python:
if not silent:
renpy.call("letter", self.text, self.label)
label letter(text, label):
label letter(text, lbl):
show screen bld1
show screen blktone
show screen letter(text)
@ -223,8 +223,8 @@ label letter(text, label):
hide screen bld1
with d3
if label:
$ renpy.call(label)
if lbl:
call expression lbl
return