From 2a0d657a0cbcebf9a5a338b5c17a79c70c38188b Mon Sep 17 00:00:00 2001 From: Corey Shupe Date: Wed, 7 Dec 2022 13:26:01 -0500 Subject: [PATCH] Fix profile presence --- .../java/com/velocitypowered/proxy/tablist/VelocityTabList.java | 1 + 1 file changed, 1 insertion(+) 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 47f487079..1c509e2dd 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/tablist/VelocityTabList.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/tablist/VelocityTabList.java @@ -120,6 +120,7 @@ public class VelocityTabList implements InternalTabList { actions.addAll(EnumSet.of(UpsertPlayerInfo.Action.ADD_PLAYER, UpsertPlayerInfo.Action.UPDATE_LATENCY, UpsertPlayerInfo.Action.UPDATE_LISTED)); + playerInfoEntry.setProfile(entry.getProfile()); if (entry.getDisplayNameComponent().isPresent()) { actions.add(UpsertPlayerInfo.Action.UPDATE_DISPLAY_NAME); playerInfoEntry.setDisplayName(entry.getDisplayNameComponent().get());