mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-01 02:46:41 +00:00
Added WECUI handshake option
This commit is contained in:
@ -77,6 +77,7 @@ public class PropertiesConfiguration extends LocalConfiguration {
|
||||
}
|
||||
|
||||
profile = getBool("profile", profile);
|
||||
enableWECUI = getBool("enable-wecui-handshake", enableWECUI);
|
||||
disallowedBlocks = getIntSet("disallowed-blocks", defaultDisallowedBlocks);
|
||||
defaultChangeLimit = getInt("default-max-changed-blocks", defaultChangeLimit);
|
||||
maxChangeLimit = getInt("max-changed-blocks", maxChangeLimit);
|
||||
|
@ -59,6 +59,7 @@ public class YAMLConfiguration extends LocalConfiguration {
|
||||
showFirstUseVersion = false;
|
||||
|
||||
profile = config.getBoolean("debug", profile);
|
||||
enableWECUI = config.getBoolean("enable-wecui-handshake", enableWECUI);
|
||||
wandItem = config.getInt("wand-item", wandItem);
|
||||
defaultChangeLimit = Math.max(-1, config.getInt(
|
||||
"limits.max-blocks-changed.default", defaultChangeLimit));
|
||||
|
Reference in New Issue
Block a user