1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

Fix bonus schema to support array in duration

This commit is contained in:
alexvins 2014-03-01 18:42:31 +00:00
parent fe4171eb63
commit c7f57406eb

View File

@ -19,7 +19,10 @@
"description": "description"
},
"duration": {
"type":"string",
"anyOf" : [
{ "type": "string"},
{ "type": "array", "items": {"type": "string"} }
],
"description": "duration"
},
"effectRange": {