Use statement instead of equivalent

(cherry picked from commit c3f753a460)
This commit is contained in:
Gouvernathor 2023-11-16 01:43:47 +01:00 committed by LoafyLemon
parent 91019374f5
commit d01f9ec1f1
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