-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
plugin.yml
37 lines (36 loc) · 1.13 KB
/
plugin.yml
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
{
"name": "KillCounter",
"version": "1.0.0",
"api": [
"3.0.0-ALPHA10",
"3.0.0-ALPHA11"
],
"author": "BlockHorizons",
"authors": [
"Sandertv (@Sandertv)",
"Luke (@lukeeey)"
],
"main": "BlockHorizons\\KillCounter\\Loader",
"permissions": {
"killcounter": {
"default": false,
"description": "Allows access to every feature of KillCounter",
"children": {
"killcounter.command": {
"default": false,
"description": "Allows access to all KillCounter commands",
"children": {
"killcounter.command.killstats": {
"default": true,
"description": "Allows access to the killstats command"
},
"killcounter.command.killstop": {
"default": true,
"description": "Allows access to the killstop command"
}
}
}
}
}
}
}