Updated Schemas

This commit is contained in:
Ben C 2024-10-04 17:19:12 +00:00
parent b8178127f2
commit 609b7bfd09

View File

@ -3613,13 +3613,19 @@
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"playerSpawn": { "playerSpawnPoints": {
"description": "If you want the player to spawn on the new body, set a value for this.", "type": "array",
"$ref": "#/definitions/PlayerSpawnPoint" "description": "If you want the player to spawn on the new body, set a value for this.\nDifferent spawns can be unlocked with persistent conditions and facts",
"items": {
"$ref": "#/definitions/PlayerSpawnPoint"
}
}, },
"shipSpawn": { "shipSpawnPoints": {
"description": "Required for the system to be accessible by warp drive.", "type": "array",
"$ref": "#/definitions/ShipSpawnPoint" "description": "Required for the system to be accessible by warp drive.\nDifferent spawns can be unlocked with persistent conditions and facts",
"items": {
"$ref": "#/definitions/ShipSpawnPoint"
}
} }
} }
}, },