Show proxy-wide online players in server ping (#811)

* Show proxy-wide online players in server ping

* Reflow arguments in VelocityConfiguration constructor
This commit is contained in:
BBaoVanC
2025-04-01 10:48:00 -05:00
committed by GitHub
parent 9324a52ce0
commit b3e218bd7d
4 changed files with 41 additions and 3 deletions

View File

@@ -516,6 +516,10 @@ public final class ServerPing {
*/
public static final class SamplePlayer {
public static final SamplePlayer ANONYMOUS = new SamplePlayer(
"Anonymous Player",
new UUID(0L, 0L)
);
private final String name;
private final UUID id;