mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-31 22:30:15 +00:00
Correctly send player names for the tab list. Fixes BUKKIT-4925
This commit is contained in:
parent
6aafe7c5a1
commit
72b36b8b07
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue