Skip to content

Commit 4b0e785

Browse files
committed
Add map zone in the html template
1 parent 887eeba commit 4b0e785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_graph_widget/html_template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class Connection extends ClassicPreset.Connection {}
149149
for (const nodeId in nodegraphData.nodes) {
150150
const nodeData = nodegraphData.nodes[nodeId];
151151
const node_type = nodeData['node_type'];
152-
if (node_type === "WHILE" || node_type === "IF" || node_type === "ZONE") {
152+
if (node_type === "WHILE" || node_type === "IF" || node_type === "ZONE" || node_type === "MAP") {
153153
// find the node
154154
const node = editor.nodeMap[nodeData.label];
155155
const children = nodeData['children'];

0 commit comments

Comments
 (0)