mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-01-08 17:07:38 +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);
|
||||
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));
|
||||
maxSuperPickaxeSize = Math.max(1, properties.getInt("max-super-pickaxe-size", 5));
|
||||
registerHelp = properties.getBoolean("register-help", true);
|
||||
|
Loading…
Reference in New Issue
Block a user