Use statements instead of equivalents

This commit is contained in:
Gouvernathor 2023-11-15 23:47:24 +01:00
parent 42f690f966
commit 77e40301c9
1 changed files with 4 additions and 4 deletions

View File

@ -72,20 +72,20 @@ init python:
return (text, icon)
label parcel(parcel, label):
label parcel(parcel, lbl):
show screen bld1
show screen blktone
$ renpy.checkpoint()
$ renpy.call("give_reward", *parcel.get_caption())
call give_reward(*parcel.get_caption())
hide screen blktone
hide screen bld1
with d3
if label:
$ renpy.call(label)
if lbl:
call expression lbl
return