From 5c848bd82b067ccf8c53ad7b4824ca31bb549db0 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 18 May 2022 00:31:38 -0400 Subject: [PATCH] Fix booleans written as strings in the schema --- NewHorizons/Schemas/schema.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/NewHorizons/Schemas/schema.json b/NewHorizons/Schemas/schema.json index 08eac6a6..469077ad 100644 --- a/NewHorizons/Schemas/schema.json +++ b/NewHorizons/Schemas/schema.json @@ -193,12 +193,12 @@ "canShowOnTitle": { "type": "boolean", "description": "Should this planet ever be shown on the title screen", - "default": "true" + "default": true }, "isQuantumState": { "type": "boolean", "description": "Does this config describe a quantum state of a custom planet defined in another file?", - "default": "false" + "default": false }, "Base": { "type": "object", @@ -950,7 +950,7 @@ "description": "For creating different objects containing translatable text.", "items": { "type": "object", - "additionalProperties": "false", + "additionalProperties": false, "properties": { "position": { "$ref": "#/$defs/vector3", @@ -989,7 +989,7 @@ "description": "Additional information about each arc in the text", "items": { "type": "object", - "additionalProperties": "false", + "additionalProperties": false, "properties": { "position": { "$ref": "#/$defs/vector2", @@ -1023,7 +1023,7 @@ "description": "Like those on Giant's Deep", "items": { "type": "object", - "additionalProperties": "false", + "additionalProperties": false, "properties": { "position": { "$ref": "#/$defs/vector3", @@ -1069,7 +1069,7 @@ "description": "Like those in the DLC", "items": { "type": "object", - "additionalProperties": "false", + "additionalProperties": false, "properties": { "position": { "$ref": "#/$defs/vector3",