mirror of
https://github.com/pelican-eggs/minecraft.git
synced 2024-11-23 03:12:46 +01:00
change variable to an array
make it so only valid variable values are allowed.
This commit is contained in:
parent
95803975c0
commit
4a07feec28
@ -3,7 +3,7 @@
|
|||||||
"meta": {
|
"meta": {
|
||||||
"version": "PTDL_v1"
|
"version": "PTDL_v1"
|
||||||
},
|
},
|
||||||
"exported_at": "2020-10-15T18:53:33+11:00",
|
"exported_at": "2020-10-16T15:10:46+00:00",
|
||||||
"name": "Vanilla Bedrock",
|
"name": "Vanilla Bedrock",
|
||||||
"author": "parker@parkervcp.com",
|
"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\".",
|
"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",
|
"default_value": "survival",
|
||||||
"user_viewable": true,
|
"user_viewable": true,
|
||||||
"user_editable": true,
|
"user_editable": true,
|
||||||
"rules": "required|string|max:9"
|
"rules": "required|string|in:survival,creative,adventure"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Difficulty",
|
"name": "Difficulty",
|
||||||
@ -66,7 +66,7 @@
|
|||||||
"default_value": "easy",
|
"default_value": "easy",
|
||||||
"user_viewable": true,
|
"user_viewable": true,
|
||||||
"user_editable": true,
|
"user_editable": true,
|
||||||
"rules": "required|string|max:8"
|
"rules": "required|string|in:peaceful,easy,normal,hard"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Allow cheats",
|
"name": "Allow cheats",
|
||||||
@ -75,7 +75,7 @@
|
|||||||
"default_value": "false",
|
"default_value": "false",
|
||||||
"user_viewable": true,
|
"user_viewable": true,
|
||||||
"user_editable": true,
|
"user_editable": true,
|
||||||
"rules": "required|string|max:5"
|
"rules": "required|string|in:true,false"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user