forked from itzg/docker-minecraft-bedrock-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperty-definitions.json
77 lines (77 loc) · 1.5 KB
/
property-definitions.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"server-name": {
"env": "SERVER_NAME"
},
"server-port": {
"env": "SERVER_PORT"
},
"gamemode": {
"env": "GAMEMODE",
"allowed": ["survival","creative","adventure"],
"mappings": {
"0": "survival",
"1": "creative",
"2": "adventure"
}
},
"difficulty": {
"env": "DIFFICULTY",
"allowed": ["easy","peaceful","normal","hard"],
"mappings": {
"0": "peaceful",
"1": "easy",
"2": "normal",
"3": "hard"
}
},
"level-type": {
"env": "LEVEL_TYPE",
"allowed": ["DEFAULT","FLAT","LEGACY"],
"mappings": {
"flat": "FLAT",
"legacy": "LEGACY",
"default": "DEFAULT"
}
},
"allow-cheats": {
"env": "ALLOW_CHEATS",
"allowed": ["true","false"]
},
"max-players": {
"env": "MAX_PLAYERS"
},
"online-mode": {
"env": "ONLINE_MODE",
"allowed": ["true","false"]
},
"white-list": {
"env": "WHITE_LIST",
"allowed": ["true","false"]
},
"view-distance": {
"env": "VIEW_DISTANCE"
},
"tick-distance": {
"env": "TICK_DISTANCE"
},
"player-idle-timeout": {
"env": "PLAYER_IDLE_TIMEOUT"
},
"max-threads": {
"env": "MAX_THREADS"
},
"level-name": {
"env": "LEVEL_NAME"
},
"level-seed": {
"env": "LEVEL_SEED"
},
"default-player-permission-level": {
"env": "DEFAULT_PLAYER_PERMISSION_LEVEL",
"allowed": ["visitor","member","operator"]
},
"texturepack-required": {
"env": "TEXTUREPACK_REQUIRED",
"allowed": ["true","false"]
}
}