diff --git a/bukkit/src/main/java/net/momirealms/craftengine/bukkit/plugin/user/BukkitServerPlayer.java b/bukkit/src/main/java/net/momirealms/craftengine/bukkit/plugin/user/BukkitServerPlayer.java index 24d33abb9..d15259099 100644 --- a/bukkit/src/main/java/net/momirealms/craftengine/bukkit/plugin/user/BukkitServerPlayer.java +++ b/bukkit/src/main/java/net/momirealms/craftengine/bukkit/plugin/user/BukkitServerPlayer.java @@ -887,12 +887,12 @@ public class BukkitServerPlayer extends Player { } @Override - public void setClientInformation(ClientInformation clientInfo) { - this.clientInformation = clientInfo; + public void setClientInformation(ClientInformation clientInformation) { + this.clientInformation = clientInformation; } @Override - public ClientInformation getClientInformation() { + public ClientInformation clientInformation() { return this.clientInformation; } diff --git a/core/src/main/java/net/momirealms/craftengine/core/plugin/network/NetWorkUser.java b/core/src/main/java/net/momirealms/craftengine/core/plugin/network/NetWorkUser.java index 35b582128..7fa66409e 100644 --- a/core/src/main/java/net/momirealms/craftengine/core/plugin/network/NetWorkUser.java +++ b/core/src/main/java/net/momirealms/craftengine/core/plugin/network/NetWorkUser.java @@ -66,7 +66,7 @@ public interface NetWorkUser { void setSentResourcePack(boolean sentResourcePack); - void setClientInformation(ClientInformation clientInfo); + void setClientInformation(ClientInformation clientInformation); - ClientInformation getClientInformation(); + ClientInformation clientInformation(); }