forked from BlockHorizons/BlockSniper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.yml
116 lines (115 loc) · 3.73 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
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
106
107
108
109
110
111
112
113
114
115
116
{
"name": "BlockSniper",
"version": "3.2.3",
"api": ["3.2.0"],
"author": "BlockHorizons",
"authors": [
"Sandertv (@Sandertv)",
"Chris-Prime (@PrimusLV)"
],
"main": "BlockHorizons\\BlockSniper\\Loader",
"load": "POSTWORLD",
"softdepend": [
"MyPlot"
],
"permissions": {
"blocksniper-myplot": {
"default": false,
"description": "Allows bypassing MyPlot plot borders with BlockSniper.",
"children": {
"blocksniper-myplot.bypass": {
"default": false,
"description": "Allows bypassing MyPlot plot protection."
},
"blocksniper-myplot.allow-outside": {
"default": "op",
"description": "Allows using BlockSniper outside of plot worlds limitlessly."
}
}
},
"blocksniper": {
"default": false,
"description": "Allows access to all BlockSniper features.",
"children": {
"blocksniper.configuration": {
"default": "op",
"description": "Allows modifying the configuration in-game."
},
"blocksniper.command": {
"default": false,
"description": "Allows access to all BlockSniper command features.",
"children": {
"blocksniper.command.brush": {
"default": "op",
"description": "Allows access to the brush wand command."
},
"blocksniper.command.undo": {
"default": "op",
"description": "Allows access to the undo command."
},
"blocksniper.command.redo": {
"default": "op",
"description": "Allows access to the redo command."
},
"blocksniper.command.blocksniper": {
"default": "op",
"description": "Allows access to the BlockSniper command."
},
"blocksniper.command.clone": {
"default": "op",
"description": "Allows access to the clone command."
},
"blocksniper.command.paste": {
"default": "op",
"description": "Allows access to the paste command."
},
}
},
"blocksniper.type": {
"default": false,
"description": "Allows access to all BlockSniper types."
},
"blocksniper.shape": {
"default": false,
"description": "Allows access to all BlockSniper shapes."
},
"blocksniper.clone": {
"default": false,
"description": "Allows access to all BlockSniper clone types.",
"children": {
"blocksniper.clone.copy": {
"default": "op",
"description": "Allows access to the copy clone type."
},
"blocksniper.clone.template": {
"default": "op",
"description": "Allows access to the template clone type."
},
"blocksniper.clone.schematic": {
"default": "op",
"description": "Allows access to the schematic clone type."
}
}
},
"blocksniper.paste": {
"default": false,
"description": "Allows access to all BlockSniper paste types.",
"children": {
"blocksniper.paste.copy": {
"default": "op",
"description": "Allows access to the copy paste type."
},
"blocksniper.paste.template": {
"default": "op",
"description": "Allows access to the template paste type."
},
"blocksniper.paste.schematic": {
"default": "op",
"description": "Allows access to the schematic paste type."
}
}
}
}
}
}
}