-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
plugin.yml
71 lines (71 loc) · 2 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
{
"name": "BlockSniper",
"version": "4.0.0",
"description": "A brush world editing plugin for PocketMine-MP",
"api": [
"4.0.0"
],
"author": "BlockHorizons",
"authors": [
"Sandertv (`@Sandertv`)",
"Chris-Prime (`@PrimusLV`)"
],
"main": "BlockHorizons\\BlockSniper\\Loader",
"softdepend": [
"MyPlot"
],
"permissions": {
"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.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.command.deselect": {
"default": "op",
"description": "Allows access to the deselect command."
},
"blocksniper.clone.copy": {
"default": "op",
"description": "Allows access to the copy clone type."
},
"blocksniper.clone.schematic": {
"default": "op",
"description": "Allows access to the schematic clone type."
},
"blocksniper.paste.copy": {
"default": "op",
"description": "Allows access to the copy paste type."
},
"blocksniper.paste.schematic": {
"default": "op",
"description": "Allows access to the schematic paste type."
}
}
}