From a1f0d7898d76b69bfb3fb2f09c113d2baa3c1863 Mon Sep 17 00:00:00 2001 From: CensoredUsername Date: Tue, 20 Feb 2024 00:03:43 +0100 Subject: [PATCH] Fix camera statement. --- decompiler/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decompiler/__init__.py b/decompiler/__init__.py index 6fa0b5db..6dc6dc64 100644 --- a/decompiler/__init__.py +++ b/decompiler/__init__.py @@ -290,7 +290,7 @@ def print_with(self, ast): self.write("with %s" % ast.expr) self.paired_with = False - @dispatch(renpy.ast.camera) + @dispatch(renpy.ast.Camera) def print_camera(self, ast): self.indent() self.write("camera")