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:
parent
a2bdcd2d79
commit
e0b5c2e1b6
@ -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": {
|
||||
|
Loading…
Reference in New Issue
Block a user