diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-05 17:42:27 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-14 19:19:40 -0400 |
commit | 3f1ffd3e4f16e321e63a466da99a5f87a346ce5b (patch) | |
tree | abf5f1eaeb15bf65fa9f9181cb749ef9d1f6d3c9 /src/SMAPI.Web | |
parent | 2f9884c47be16d476d5acbecd053b0754fa2bd59 (diff) | |
download | SMAPI-3f1ffd3e4f16e321e63a466da99a5f87a346ce5b.tar.gz SMAPI-3f1ffd3e4f16e321e63a466da99a5f87a346ce5b.tar.bz2 SMAPI-3f1ffd3e4f16e321e63a466da99a5f87a346ce5b.zip |
allow bool condition values in CP schema
Diffstat (limited to 'src/SMAPI.Web')
-rw-r--r-- | src/SMAPI.Web/wwwroot/schemas/content-patcher.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/wwwroot/schemas/content-patcher.json b/src/SMAPI.Web/wwwroot/schemas/content-patcher.json index 4d844443..b75782fe 100644 --- a/src/SMAPI.Web/wwwroot/schemas/content-patcher.json +++ b/src/SMAPI.Web/wwwroot/schemas/content-patcher.json @@ -344,7 +344,7 @@ "Condition": { "type": "object", "additionalProperties": { - "type": "string" + "type": [ "boolean", "string" ] } }, "Rectangle": { |