Avoid using a weak name link
This commit is contained in:
parent
1e8f1ebfb8
commit
dfd7972752
@ -79,7 +79,7 @@ python early hide:
|
|||||||
return (who, action)
|
return (who, action)
|
||||||
|
|
||||||
def execute(self):
|
def execute(self):
|
||||||
print(f"{self}")
|
print(self)
|
||||||
who, action = self
|
who, action = self
|
||||||
chibi = DollChibi.instance[who]
|
chibi = DollChibi.instance[who]
|
||||||
getattr(chibi, action)
|
getattr(chibi, action)
|
||||||
@ -101,7 +101,7 @@ python early hide:
|
|||||||
who, action = self
|
who, action = self
|
||||||
|
|
||||||
chibi = DollChibi.instances[who]
|
chibi = DollChibi.instances[who]
|
||||||
doll = getattr(store, who)
|
doll = states.dolls[who]
|
||||||
|
|
||||||
layers = (
|
layers = (
|
||||||
l[0] for pose in chibi.poses.keys()
|
l[0] for pose in chibi.poses.keys()
|
||||||
|
Loading…
Reference in New Issue
Block a user