-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
40 lines (40 loc) · 886 Bytes
/
config.example.json
File metadata and controls
40 lines (40 loc) · 886 Bytes
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
{
"auth": {
"enabled": true,
"adminTokens": [
"your-admin-token-here"
],
"playerTokens": [
"your-player-token-here"
]
},
"features": {
"players": {
"listPlayers": false,
"executeCommand": false,
"broadcastMessage": false,
"setBlock": false,
"getPlayerPosition": false,
"getLogs": false,
"sendChatMessage": false,
"getBlockTypes": false,
"listBlocks": false,
"getWorldInfo": false,
"getServerInfo": false
},
"admins": {
"listPlayers": true,
"executeCommand": true,
"broadcastMessage": true,
"setBlock": true,
"getPlayerPosition": true,
"getLogs": true,
"sendChatMessage": true,
"getBlockTypes": true,
"listBlocks": true,
"getWorldInfo": true,
"getServerInfo": true
},
"maxBlocksBatch": 1000
}
}