From dfd7972752cf3587da0ddfcc442f9be9c9e558ae Mon Sep 17 00:00:00 2001 From: Gouvernathor <44340603+Gouvernathor@users.noreply.github.com> Date: Thu, 4 Apr 2024 22:51:02 +0200 Subject: [PATCH] Avoid using a weak name link --- game/scripts/01cds.rpy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/scripts/01cds.rpy b/game/scripts/01cds.rpy index 744fc6e9..55e3a3f0 100644 --- a/game/scripts/01cds.rpy +++ b/game/scripts/01cds.rpy @@ -79,7 +79,7 @@ python early hide: return (who, action) def execute(self): - print(f"{self}") + print(self) who, action = self chibi = DollChibi.instance[who] getattr(chibi, action) @@ -101,7 +101,7 @@ python early hide: who, action = self chibi = DollChibi.instances[who] - doll = getattr(store, who) + doll = states.dolls[who] layers = ( l[0] for pose in chibi.poses.keys()