From b9ea934857caca94f2ed145b1687147a507df38b Mon Sep 17 00:00:00 2001 From: JesFot Date: Tue, 17 Nov 2020 15:10:48 +0100 Subject: [PATCH] Changing shareWithClient defaults to ``true`` --- src/main/java/net/minestom/server/attribute/Attribute.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/minestom/server/attribute/Attribute.java b/src/main/java/net/minestom/server/attribute/Attribute.java index b5d2168b5..2e4c9903a 100644 --- a/src/main/java/net/minestom/server/attribute/Attribute.java +++ b/src/main/java/net/minestom/server/attribute/Attribute.java @@ -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) {