From 881aeacc6986b8d1853d6f4def39d2118f314ca8 Mon Sep 17 00:00:00 2001 From: Elckarow <101005497+Elckarow@users.noreply.github.com> Date: Sun, 24 Mar 2024 23:16:46 +0100 Subject: [PATCH] check for warp_function as well --- renpy/atl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renpy/atl.py b/renpy/atl.py index 39ad8f32db..85a49fa267 100644 --- a/renpy/atl.py +++ b/renpy/atl.py @@ -2209,7 +2209,7 @@ def parse_atl(l): # Now, look for properties and simple_expressions. while True: - if (warper is not None) and (not has_block) and ll.match(':'): + if ((warper is not None) or (warp_function is not None)) and (not has_block) and ll.match(':'): ll.expect_eol() ll.expect_block("ATL") has_block = True