Skip to content

Commit

Permalink
🛠️ Fix compiler crash due to undefined accessor
Browse files Browse the repository at this point in the history
  • Loading branch information
SnaveSutit committed Aug 2, 2024
1 parent 190c13e commit e61d9d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/systems/datapackCompiler/animation.mcb
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ dir <%export_namespace%> {
}
}
} ELSE IF (node.type === 'camera') {
IF (rig.nodeMap[node.uuid]) {
IF (rig.nodes[node.uuid]) {
<%%
global.merged.cameras[node.safe_name] = {
posx: global.transform.pos[0],
Expand Down
4 changes: 2 additions & 2 deletions test_blueprints/armor_stand.ajblueprint
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"show_bounding_box": false,
"auto_bounding_box": true,
"bounding_box": [95, 32],
"enable_plugin_mode": true,
"enable_plugin_mode": false,
"resource_pack_export_mode": "raw",
"data_pack_export_mode": "raw",
"display_item": "minecraft:white_dye",
Expand Down Expand Up @@ -992,7 +992,7 @@
"uuid": "5e08acae-d6ca-0dfd-9360-8cdb13c7a824",
"export": true,
"mirror_uv": false,
"isOpen": false,
"isOpen": true,
"locked": false,
"visibility": true,
"autouv": 0,
Expand Down

0 comments on commit e61d9d3

Please sign in to comment.