mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 13:06:02 +01:00
Correctly send player names for the tab list. Fixes BUKKIT-4925
This commit is contained in:
parent
6aafe7c5a1
commit
72b36b8b07
@ -262,7 +262,7 @@ public abstract class PlayerList {
|
||||
continue;
|
||||
}
|
||||
// .name -> .listName
|
||||
entityplayer.playerConnection.sendPacket(new PacketPlayOutPlayerInfo(entityplayer1.getName(), true, entityplayer1.ping));
|
||||
entityplayer.playerConnection.sendPacket(new PacketPlayOutPlayerInfo(entityplayer1.listName, true, entityplayer1.ping));
|
||||
// CraftBukkit end
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user