diff --git a/NewHorizons/Schemas/body_schema.json b/NewHorizons/Schemas/body_schema.json index 1914592e..fff468c4 100644 --- a/NewHorizons/Schemas/body_schema.json +++ b/NewHorizons/Schemas/body_schema.json @@ -1240,10 +1240,6 @@ "type": "object", "additionalProperties": false, "properties": { - "downwards": { - "type": "boolean", - "description": "[DEPRECATED] Should this tornado shoot you down instead of up?" - }, "elevation": { "type": "number", "description": "Alternative to setting the position. Will choose a random place at this elevation.", @@ -1283,6 +1279,11 @@ "type": "number", "description": "The rate at which the tornado will wander around the planet. Set to 0 for it to be stationary. Should be around\n0.1.", "format": "float" + }, + "audioDistance": { + "type": "number", + "description": "The maximum distance at which you'll hear the sounds of the cyclone. If not set it will scale relative to the size of the cyclone.", + "format": "float" } } }, diff --git a/NewHorizons/Schemas/star_system_schema.json b/NewHorizons/Schemas/star_system_schema.json index 1a4076a5..1e937325 100644 --- a/NewHorizons/Schemas/star_system_schema.json +++ b/NewHorizons/Schemas/star_system_schema.json @@ -9,10 +9,6 @@ "type": "boolean", "description": "Whether this system can be warped to via the warp drive" }, - "coords": { - "description": "[DEPRECATED] Not implemented", - "$ref": "#/definitions/NomaiCoordinates" - }, "destroyStockPlanets": { "type": "boolean", "description": "Do you want a clean slate for this star system? Or will it be a modified version of the original." @@ -52,33 +48,6 @@ } }, "definitions": { - "NomaiCoordinates": { - "type": "object", - "additionalProperties": false, - "properties": { - "x": { - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } - }, - "y": { - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } - }, - "z": { - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } - } - } - }, "SkyboxConfig": { "type": "object", "additionalProperties": false,