1
0
mirror of https://github.com/teoxoy/factorio-blueprint-editor.git synced 2024-11-21 17:06:30 +02:00

Make signal name optional for unset roboport signal outputs

This commit is contained in:
Teodor Tanasoaia 2024-03-31 18:34:11 +02:00 committed by GitHub
parent a2bdcd2d79
commit e0b5c2e1b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,6 +32,21 @@
}
}
},
"optional_signal": {
"type": "object",
"required": ["type"],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"itemFluidSignalName": true
},
"type": {
"type": "string",
"enum": ["item", "virtual", "fluid"]
}
}
},
"wireColor": {
"type": "array",
"items": {
@ -482,16 +497,16 @@
},
"available_logistic_output_signal": {
"$ref": "blueprintSchema.json#/definitions/signal"
"$ref": "blueprintSchema.json#/definitions/optional_signal"
},
"total_logistic_output_signal": {
"$ref": "blueprintSchema.json#/definitions/signal"
"$ref": "blueprintSchema.json#/definitions/optional_signal"
},
"available_construction_output_signal": {
"$ref": "blueprintSchema.json#/definitions/signal"
"$ref": "blueprintSchema.json#/definitions/optional_signal"
},
"total_construction_output_signal": {
"$ref": "blueprintSchema.json#/definitions/signal"
"$ref": "blueprintSchema.json#/definitions/optional_signal"
},
"circuit_read_resources": {