mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-01-09 09:17:39 +00:00
Fixed 'max-blocks-changed' not being loaded from configuration.
This commit is contained in:
parent
78910b3a71
commit
37140b0211
@ -2151,7 +2151,8 @@ public class WorldEditListener extends PluginListener {
|
|||||||
|
|
||||||
profile = properties.getBoolean("debug-profile", false);
|
profile = properties.getBoolean("debug-profile", false);
|
||||||
wandItem = properties.getInt("wand-item", 271);
|
wandItem = properties.getInt("wand-item", 271);
|
||||||
defaultChangeLimit = Math.max(-1, properties.getInt("max-blocks-changed", -1));
|
defaultChangeLimit = Math.max(-1, properties.getInt("default-max-blocks-changed", -1));
|
||||||
|
maxChangeLimit = Math.max(-1, properties.getInt("max-blocks-changed", -1));
|
||||||
maxRadius = Math.max(-1, properties.getInt("max-radius", -1));
|
maxRadius = Math.max(-1, properties.getInt("max-radius", -1));
|
||||||
maxSuperPickaxeSize = Math.max(1, properties.getInt("max-super-pickaxe-size", 5));
|
maxSuperPickaxeSize = Math.max(1, properties.getInt("max-super-pickaxe-size", 5));
|
||||||
registerHelp = properties.getBoolean("register-help", true);
|
registerHelp = properties.getBoolean("register-help", true);
|
||||||
|
Loading…
Reference in New Issue
Block a user