From 4ce774a380ebaa0ac7060cd710ef562627d62ca5 Mon Sep 17 00:00:00 2001 From: krs Date: Sat, 22 Jul 2023 13:42:57 +0300 Subject: [PATCH] Wrong placement of onlyOnWaterMap in spells schema. --- config/schemas/obstacle.json | 4 ++-- config/schemas/spell.json | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/schemas/obstacle.json b/config/schemas/obstacle.json index d96e75410..780f224f9 100644 --- a/config/schemas/obstacle.json +++ b/config/schemas/obstacle.json @@ -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", diff --git a/config/schemas/spell.json b/config/schemas/spell.json index 28caae4a2..7de694c37 100644 --- a/config/schemas/spell.json +++ b/config/schemas/spell.json @@ -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" - } }