diff --git a/game/scripts/01cds.rpy b/game/scripts/01cds.rpy index 12de16b5..10bc630e 100644 --- a/game/scripts/01cds.rpy +++ b/game/scripts/01cds.rpy @@ -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]