Fix lint and prediction

This commit is contained in:
Gouvernathor 2024-04-05 00:20:21 +02:00
parent e129921bc0
commit ec27f91904

View File

@ -94,7 +94,7 @@ python early hide:
# print(f"Execution: {who} {action}") # print(f"Execution: {who} {action}")
def lint(self): def lint(self):
who, action = self who, action, arguments = self
if who not in DollChibi.instances: if who not in DollChibi.instances:
renpy.error(f"Character chibi not defined: {who}") renpy.error(f"Character chibi not defined: {who}")
@ -105,7 +105,7 @@ python early hide:
renpy.error(f"Chibi action not defined: {who} {action}") renpy.error(f"Chibi action not defined: {who} {action}")
def predict(self): def predict(self):
who, action = self who, action, arguments = self
chibi = DollChibi.instances[who] chibi = DollChibi.instances[who]
doll = states.dolls[who] doll = states.dolls[who]