diff --git a/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ConnectedPlayer.java b/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ConnectedPlayer.java index 5bd49bd9e..e531c2101 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ConnectedPlayer.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ConnectedPlayer.java @@ -418,7 +418,8 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player, this.playerListHeader = translatedHeader; this.playerListFooter = translatedFooter; if (this.getProtocolVersion().compareTo(ProtocolVersion.MINECRAFT_1_8) >= 0) { - this.connection.write(HeaderAndFooter.create(header, footer, this.getProtocolVersion())); + this.connection.write(HeaderAndFooter.create( + translatedHeader, translatedFooter, this.getProtocolVersion())); } } @@ -1290,4 +1291,4 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player, connectWithIndication(); } } -} \ No newline at end of file +}