diff --git a/proxy/src/main/java/com/velocitypowered/proxy/tablist/VelocityTabList.java b/proxy/src/main/java/com/velocitypowered/proxy/tablist/VelocityTabList.java index e18881b45..d6b4143ce 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/tablist/VelocityTabList.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/tablist/VelocityTabList.java @@ -166,7 +166,9 @@ public class VelocityTabList implements InternalTabList { return entry; }); - this.connection.write(new UpsertPlayerInfoPacket(actions, List.of(playerInfoEntry))); + if (!actions.isEmpty()) { + this.connection.write(new UpsertPlayerInfoPacket(actions, List.of(playerInfoEntry))); + } } @Override