We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d888ad5 commit 45ccd34Copy full SHA for 45ccd34
exporters/jsonExporter/jsonConstructor.ts
@@ -46,6 +46,7 @@ interface ISerializedNode {
46
name: string
47
uuid: string
48
nbt: string
49
+ entity_type?: string
50
custom_model_data?: number
51
resource_location?: string
52
}
@@ -127,6 +128,7 @@ function serializeNodeMap(
127
128
name,
129
uuid,
130
nbt: node.nbt,
131
+ entity_type: node.entity_type,
132
133
134
exporters/jsonExporter/jsonStructure.json
@@ -78,6 +78,9 @@
78
},
79
"nbt": {
80
"type": "string"
81
+ },
82
+ "entity_type": {
83
+ "type": "string"
84
85
86
0 commit comments