Skip to content

Commit

Permalink
Fix wrong attribute used in the camera statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
CensoredUsername committed Feb 22, 2024
1 parent 4196774 commit 4d0d80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decompiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def print_camera(self, ast):
self.indent()
self.write("camera")

if ast.name != "master":
if ast.layer != "master":
self.write(" %s" % ast.name)

if ast.at_list:
Expand Down

0 comments on commit 4d0d80e

Please sign in to comment.