Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sisilicon
GitHub Repository: sisilicon/worldedit-be
Path: blob/master/src/config.d.ts
1780 views
1
declare const _default: {
2
/**
3
* Enables debug messages to content logs.
4
*/
5
debug: boolean;
6
/**
7
* What character(s) to use to define the beginning of custom commands.
8
*/
9
commandPrefix: string;
10
/**
11
* Whether the addon should use simpler methods to run operations faster.
12
* This comes with the drawback of more limited capabilities.
13
*/
14
performanceMode: boolean;
15
/**
16
* How many operations can be recorded in a player's history.
17
*/
18
maxHistorySize: number;
19
/**
20
* Whether a player's outlines are drawn by default. Outlines include selections, brush influence and paste location
21
*/
22
drawOutlines: boolean | "local";
23
/**
24
* How long (in ticks) until a previously active builder's session gets deleted.
25
* This includes their undo/redo history.
26
*/
27
ticksToDeleteSession: number;
28
/**
29
* Whether commands executed by items print their messages to the action bar or the chat.
30
*/
31
printToActionBar: boolean;
32
/**
33
* The default item used for marking selection wand.
34
*/
35
wandItem: string;
36
/**
37
* The default item used for the navigation wand.
38
*/
39
navWandItem: string;
40
/**
41
* The distance the navigation wand, among other tools and commands, traces for a block of interest.
42
*/
43
traceDistance: number;
44
/**
45
* The maximum brush radius allowed.
46
*/
47
maxBrushRadius: number;
48
/**
49
* Whether blocks broken by the super pickaxe in "single" mode drop.
50
*/
51
superPickaxeDrop: boolean;
52
/**
53
* Whether blocks broken by the super pickaxe in "area" and "recursive" mode drop.
54
*/
55
superPickaxeManyDrop: boolean;
56
/**
57
* The default amount of blocks that can be "potentially" affected within a single operation.
58
*/
59
defaultChangeLimit: number;
60
/**
61
* The absolute change limit that can be set from the ;limit command.
62
* Bypassed with "worldedit.limit.unlimited" permission.
63
*/
64
maxChangeLimit: number;
65
/**
66
* How long an async operation will run until giving Minecraft a chance to run.
67
* The higher the value, the faster the operation, but the slower Minecraft takes to run.
68
*/
69
asyncTimeBudget: number;
70
};
71
export default _default;
72
73
/**
74
* WorldEdit version (do not change)
75
*/
76
export declare const VERSION: string;
77
78