From 505bb2a4bc0ce5418e2a5796e7cd243d09e4da1a Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Thu, 17 Nov 2022 21:04:32 -0600 Subject: [PATCH] projInfo.id must be non-zero length --- src/data/projInfo-schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/projInfo-schema.json b/src/data/projInfo-schema.json index 2565f5a..0cea13c 100644 --- a/src/data/projInfo-schema.json +++ b/src/data/projInfo-schema.json @@ -12,7 +12,8 @@ }, "id": { "type": "string", - "description": "This is a unique ID used when saving player data. Changing this will effectively erase all save data for all players. This ID MUST be unique to your project, and should not be left as the default value. Otherwise, your project may use the save data from another project and cause issues for both projects." + "description": "This is a unique ID used when saving player data. Changing this will effectively erase all save data for all players. This ID MUST be unique to your project, and should not be left as the default value. Otherwise, your project may use the save data from another project and cause issues for both projects.", + "minLength": 1 }, "author": { "type": "string",