Just use server specific tab lists for now.

This commit is contained in:
md_5
2014-08-31 19:17:23 +10:00
parent 6eedc77954
commit 5282a8f45a
2 changed files with 5 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ public class PlayerListItem extends DefinedPacket
if ( protocolVersion < ProtocolConstants.MINECRAFT_SNAPSHOT )
{
Item item = items[0]; // Only one at a time
writeString( TextComponent.toLegacyText( ComponentSerializer.parse( item.displayName ) ), buf );
writeString( item.displayName, buf ); // TODO: Server unique only!
buf.writeBoolean( action != Action.REMOVE_PLAYER );
buf.writeShort( item.ping );
} else