forked from itzg/docker-minecraft-bedrock-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
property-definitions.json
105 lines (105 loc) · 2.25 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"server-name": {
"env": "SERVER_NAME"
},
"server-port": {
"env": "SERVER_PORT"
},
"server-portv6": {
"env": "SERVER_PORT_V6"
},
"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"]
},
"allow-list": {
"env": "ALLOW_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"]
},
"server-authoritative-movement": {
"env": "SERVER_AUTHORITATIVE_MOVEMENT",
"allowed": ["server-auth","client-auth","server-auth-with-rewind"],
"mappings": {
"true": "server-auth",
"false": "client-auth"
}
},
"player-movement-score-threshold": {
"env": "PLAYER_MOVEMENT_SCORE_THRESHOLD"
},
"player-movement-distance-threshold": {
"env": "PLAYER_MOVEMENT_DISTANCE_THRESHOLD"
},
"player-movement-duration-threshold-in-ms": {
"env": "PLAYER_MOVEMENT_DURATION_THRESHOLD_IN_MS"
},
"correct-player-movement": {
"env": "CORRECT_PLAYER_MOVEMENT",
"allowed": ["true","false"]
}
}