Fixing molang

This commit is contained in:
DaanV2
2021-06-05 21:56:06 +02:00
parent a0e4135b59
commit 0a93ee4a3e
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
{
"title": "Molang Array Of 3 Numbers",
"description": "The minecraft molang definition that results in a 3 floats",
"anyOf": [{ "type": "string", "minLength": 0, "format": "molang" }]
"anyOf": [{ "type": "string", "minLength": 0 }]
}

View File

@@ -2,5 +2,5 @@
"$id": "molang_number1.8.0",
"title": "Molang Number",
"description": "The minecraft molang definition that results in a float",
"anyOf": [{ "type": "string", "minLength": 0, "format": "molang" }, { "type": "number" }]
"anyOf": [{ "type": "string", "minLength": 0 }, { "type": "number" }]
}