From 77e40301c9b8f15dc84d702d324ff3cf171d9057 Mon Sep 17 00:00:00 2001 From: Gouvernathor <44340603+Gouvernathor@users.noreply.github.com> Date: Wed, 15 Nov 2023 23:47:24 +0100 Subject: [PATCH] Use statements instead of equivalents --- game/scripts/interface/parcel.rpy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/game/scripts/interface/parcel.rpy b/game/scripts/interface/parcel.rpy index 7738d863..f8c75595 100644 --- a/game/scripts/interface/parcel.rpy +++ b/game/scripts/interface/parcel.rpy @@ -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