-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
worldedit_settings.json
62 lines (62 loc) · 2.57 KB
/
worldedit_settings.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
{
"commandPrefix": {
"description": "What character(s) to use to define the beginning of custom commands.",
"default": ";"
},
"performanceMode": {
"description": "Whether the addon should use simpler methods to run operations faster.\nThis comes with the drawback of more limited capabilities.",
"default": false
},
"maxHistorySize": {
"description": "How many operations can be recorded in a player's history.",
"default": 25
},
"drawOutlines": {
"description": "Whether a player's outlines are drawn by default. Outlines include selections, brush influence and paste location. Can be true, false or \"local\".",
"default": true
},
"ticksToDeleteSession": {
"description": "How long (in ticks) until a previously active builder's session gets deleted.\nThis includes their undo/redo history.",
"default": 12000
},
"printToActionBar": {
"description": "Whether commands executed by items print their messages to the action bar or the chat.",
"default": true
},
"wandItem": {
"description": "The default item used for marking selection wand.",
"default": "minecraft:wooden_axe"
},
"navWandItem": {
"description": "The default item used for the navigation wand.",
"default": "minecraft:ender_pearl"
},
"traceDistance": {
"description": "The distance the navigation wand, among other tools and commands, traces for a block of interest.",
"default": 256
},
"maxBrushRadius": {
"description": "The maximum brush radius allowed.",
"default": 12
},
"superPickaxeDrop": {
"description": "Whether blocks broken by the super pickaxe in \"single\" mode drop.",
"default": true
},
"superPickaxeManyDrop": {
"description": "Whether blocks broken by the super pickaxe in \"area\" and \"recursive\" mode drop.",
"default": false
},
"defaultChangeLimit": {
"description": "The default amount of blocks that can be \"potentially\" affected within a single operation.",
"default": -1
},
"maxChangeLimit": {
"description": "The absolute change limit that can be set from the ;limit command.\nBypassed with \"worldedit.limit.unlimited\" permission.",
"default": -1
},
"asyncTimeBudget": {
"description": "How long an async operation will run until giving Minecraft a chance to run.\nThe higher the value, the faster the operation, but the slower Minecraft takes to run.",
"default": 150
}
}