Fixing block identifiers

This commit is contained in:
DaanV2
2021-06-03 14:07:10 +02:00
parent 00e281e6db
commit 8edda85149
3 changed files with 6 additions and 6 deletions

View File

@@ -44,7 +44,7 @@
"block_types": { "block_types": {
"type": "array", "type": "array",
"description": "List of blocks that can help the transformation of this entity", "description": "List of blocks that can help the transformation of this entity",
"items": { "$ref": "../../../../general/blocks_identifiers.json" } "items": { "$ref": "../../../../general/block/identifier.json" }
}, },
"value": { "type": "number", "default": 0, "description": "Time in seconds before the entity transforms" } "value": { "type": "number", "default": 0, "description": "Time in seconds before the entity transforms" }
} }

View File

@@ -45,25 +45,25 @@
"breatheBlocks": { "breatheBlocks": {
"type": "array", "type": "array",
"description": "List of blocks this entity can breathe in, in addition to the above", "description": "List of blocks this entity can breathe in, in addition to the above",
"items": { "$ref": "../../../../general/blocks_identifiers.json" }, "items": { "$ref": "../../../../general/block/identifier.json" },
"title": "TODO Title" "title": "TODO Title"
}, },
"breathe_blocks": { "breathe_blocks": {
"type": "array", "type": "array",
"description": "List of blocks this entity can breathe in, in addition to the above", "description": "List of blocks this entity can breathe in, in addition to the above",
"items": { "$ref": "../../../../general/blocks_identifiers.json" }, "items": { "$ref": "../../../../general/block/identifier.json" },
"title": "TODO Title" "title": "TODO Title"
}, },
"nonBreatheBlocks": { "nonBreatheBlocks": {
"type": "array", "type": "array",
"description": "List of blocks this entity can't breathe in, in addition to the above", "description": "List of blocks this entity can't breathe in, in addition to the above",
"items": { "$ref": "../../../../general/blocks_identifiers.json" }, "items": { "$ref": "../../../../general/block/identifier.json" },
"title": "TODO Title" "title": "TODO Title"
}, },
"non_breathe_blocks": { "non_breathe_blocks": {
"type": "array", "type": "array",
"description": "List of blocks this entity can't breathe in, in addition to the above", "description": "List of blocks this entity can't breathe in, in addition to the above",
"items": { "$ref": "../../../../general/blocks_identifiers.json" }, "items": { "$ref": "../../../../general/block/identifier.json" },
"title": "TODO Title" "title": "TODO Title"
} }
} }

View File

@@ -3,6 +3,6 @@
"type": "array", "type": "array",
"title": "Particle Expire If Not In Blocks Component For 1.10.0", "title": "Particle Expire If Not In Blocks Component For 1.10.0",
"additionalProperties": false, "additionalProperties": false,
"items": { "$ref": "../../../../general/blocks_identifiers.json", "description": "TODO description", "title": "TODO Title" }, "items": { "$ref": "../../../../general/block/identifier.json", "description": "TODO description", "title": "TODO Title" },
"description": "TODO description" "description": "TODO description"
} }