Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sisilicon
GitHub Repository: sisilicon/worldedit-be
Path: blob/master/worldedit_settings.json
1779 views
1
{
2
"commandPrefix": {
3
"description": "What character(s) to use to define the beginning of custom commands.",
4
"default": ";"
5
},
6
"performanceMode": {
7
"description": "Whether the addon should use simpler methods to run operations faster.\nThis comes with the drawback of more limited capabilities.",
8
"default": false
9
},
10
"maxHistorySize": {
11
"description": "How many operations can be recorded in a player's history.",
12
"default": 25
13
},
14
"drawOutlines": {
15
"description": "Whether a player's outlines are drawn by default. Outlines include selections, brush influence and paste location. Can be true, false or \"local\".",
16
"default": true
17
},
18
"ticksToDeleteSession": {
19
"description": "How long (in ticks) until a previously active builder's session gets deleted.\nThis includes their undo/redo history.",
20
"default": 12000
21
},
22
"printToActionBar": {
23
"description": "Whether commands executed by items print their messages to the action bar or the chat.",
24
"default": true
25
},
26
"wandItem": {
27
"description": "The default item used for marking selection wand.",
28
"default": "minecraft:wooden_axe"
29
},
30
"navWandItem": {
31
"description": "The default item used for the navigation wand.",
32
"default": "minecraft:ender_pearl"
33
},
34
"traceDistance": {
35
"description": "The distance the navigation wand, among other tools and commands, traces for a block of interest.",
36
"default": 256
37
},
38
"maxBrushRadius": {
39
"description": "The maximum brush radius allowed.",
40
"default": 12
41
},
42
"superPickaxeDrop": {
43
"description": "Whether blocks broken by the super pickaxe in \"single\" mode drop.",
44
"default": true
45
},
46
"superPickaxeManyDrop": {
47
"description": "Whether blocks broken by the super pickaxe in \"area\" and \"recursive\" mode drop.",
48
"default": false
49
},
50
"defaultChangeLimit": {
51
"description": "The default amount of blocks that can be \"potentially\" affected within a single operation.",
52
"default": -1
53
},
54
"maxChangeLimit": {
55
"description": "The absolute change limit that can be set from the ;limit command.\nBypassed with \"worldedit.limit.unlimited\" permission.",
56
"default": -1
57
},
58
"asyncTimeBudget": {
59
"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.",
60
"default": 150
61
}
62
}
63