1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-25 21:38:59 +02:00

Wrong placement of onlyOnWaterMap in spells schema.

This commit is contained in:
krs 2023-07-22 13:42:57 +03:00
parent c3584f7f91
commit 4ce774a380
2 changed files with 6 additions and 6 deletions

View File

@ -30,11 +30,11 @@
},
"width" : {
"type" : "number",
"description" : "Width ob obstacle"
"description" : "Width of obstacle"
},
"height" : {
"type" : "number",
"description" : "height if obstacle"
"description" : "height of obstacle"
},
"blockedTiles" : {
"type" : "array",

View File

@ -308,10 +308,10 @@
"$ref" : "#/definitions/levelInfo"
}
}
},
"onlyOnWaterMap" : {
"type" : "boolean",
"description" : "It true, spell won't be available on a map without water"
}
},
"onlyOnWaterMap" : {
"type" : "boolean",
"description" : "It true, spell won't be available on a map without water"
}
}