mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-15 04:41:37 +08:00
Added new configuration to default config.yml. Changed navigation configuration variables for Bukkit.
This commit is contained in:
parent
c76e8ba072
commit
0a8dc5b47d
@ -39,6 +39,10 @@ super-pickaxe:
|
||||
snapshots:
|
||||
directory:
|
||||
|
||||
navigation-wand:
|
||||
item: 345
|
||||
max-distance: 50
|
||||
|
||||
wand-item: 271
|
||||
shell-save-type:
|
||||
no-double-slash: false
|
||||
|
@ -61,8 +61,9 @@ public void load() {
|
||||
useInventoryOverride = config.getBoolean("use-inventory.allow-override",
|
||||
useInventoryOverride);
|
||||
maxBrushRadius = config.getInt("limits.max-brush-radius", maxBrushRadius);
|
||||
navigationWand = config.getInt("navigation-wand-item", navigationWand);
|
||||
navigationWandMaxDistance = config.getInt("navigation-wand-max-distance", navigationWandMaxDistance);
|
||||
|
||||
navigationWand = config.getInt("navigation-wand.item", navigationWand);
|
||||
navigationWandMaxDistance = config.getInt("navigation-wand.max-distance", navigationWandMaxDistance);
|
||||
|
||||
disallowedBlocks = new HashSet<Integer>(config.getIntList("limits.disallowed-blocks", null));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user