From 94b5ea15a5a2a9a8de651d6c7de4007552f485f4 Mon Sep 17 00:00:00 2001 From: Gouvernathor <44340603+Gouvernathor@users.noreply.github.com> Date: Thu, 4 Apr 2024 23:25:15 +0200 Subject: [PATCH] Better parsing --- 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 a22354cf..12de16b5 100644 --- a/game/scripts/01cds.rpy +++ b/game/scripts/01cds.rpy @@ -73,8 +73,8 @@ python early hide: class chibi: @staticmethod def parse(l): - who = l.name() - action = l.name() + who = l.require(l.name) + action = l.require(l.name) arguments = l.arguments() # may be None l.expect_eol()