1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Merge pull request #2386 from krs0/feature/fix_spell_schema_for_onlyOnWaterMap

Wrong placement of onlyOnWaterMap in spells schema.
This commit is contained in:
DjWarmonger
2023-07-22 15:57:44 +02:00
committed by GitHub
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"
}
}