Fix lint and prediction

This commit is contained in:
Gouvernathor 2024-04-05 00:20:21 +02:00
parent e129921bc0
commit ec27f91904
1 changed files with 2 additions and 2 deletions

View File

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