Changing shareWithClient defaults to `true`

This commit is contained in:
JesFot 2020-11-17 15:10:48 +01:00 committed by GitHub
parent d738f9fddd
commit b9ea934857
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ public class Attribute {
private final boolean shareWithClient;
public Attribute(@NotNull String key, float defaultValue, float maxValue) {
this(key, false, defaultValue, maxValue);
this(key, true, defaultValue, maxValue);
}
public Attribute(@NotNull String key, boolean shareWithClient, float defaultValue, float maxValue) {