mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-23 08:46:44 +01: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;
|
continue;
|
||||||
}
|
}
|
||||||
// .name -> .listName
|
// .name -> .listName
|
||||||
entityplayer.playerConnection.sendPacket(new PacketPlayOutPlayerInfo(entityplayer1.getName(), true, entityplayer1.ping));
|
entityplayer.playerConnection.sendPacket(new PacketPlayOutPlayerInfo(entityplayer1.listName, true, entityplayer1.ping));
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue