From 4a07feec2834815daca3eee523601e721fb9fdd1 Mon Sep 17 00:00:00 2001 From: parkervcp Date: Fri, 16 Oct 2020 11:12:26 -0400 Subject: [PATCH] change variable to an array make it so only valid variable values are allowed. --- minecraft/bedrock/bedrock/egg-vanilla-bedrock.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/minecraft/bedrock/bedrock/egg-vanilla-bedrock.json b/minecraft/bedrock/bedrock/egg-vanilla-bedrock.json index fc8e9c94..e05438c2 100644 --- a/minecraft/bedrock/bedrock/egg-vanilla-bedrock.json +++ b/minecraft/bedrock/bedrock/egg-vanilla-bedrock.json @@ -3,7 +3,7 @@ "meta": { "version": "PTDL_v1" }, - "exported_at": "2020-10-15T18:53:33+11:00", + "exported_at": "2020-10-16T15:10:46+00:00", "name": "Vanilla Bedrock", "author": "parker@parkervcp.com", "description": "Bedrock Edition (also known as the Bedrock Version, Bedrock Codebase, Bedrock Engine or just Bedrock) refers to the multi-platform family of editions of Minecraft developed by Mojang AB, Microsoft Studios, 4J Studios, and SkyBox Labs. Prior to this term, as the engine originated with Pocket Edition, this entire product family was referred to as \"Pocket Edition\", \"MCPE\", or \"Pocket\/Windows 10 Edition\".", @@ -57,7 +57,7 @@ "default_value": "survival", "user_viewable": true, "user_editable": true, - "rules": "required|string|max:9" + "rules": "required|string|in:survival,creative,adventure" }, { "name": "Difficulty", @@ -66,7 +66,7 @@ "default_value": "easy", "user_viewable": true, "user_editable": true, - "rules": "required|string|max:8" + "rules": "required|string|in:peaceful,easy,normal,hard" }, { "name": "Allow cheats", @@ -75,7 +75,7 @@ "default_value": "false", "user_viewable": true, "user_editable": true, - "rules": "required|string|max:5" + "rules": "required|string|in:true,false" } ] } \ No newline at end of file