add more data to the java server pinger
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m29s

This commit is contained in:
Lee
2024-04-10 14:24:55 +01:00
parent cd3738a2b9
commit 795c97401c
2 changed files with 48 additions and 3 deletions

View File

@ -47,4 +47,23 @@ public final class JavaServerStatusToken {
* The favicon of the server.
*/
private final String favicon;
/**
* Whether the server prevents chat reports.
*/
private boolean preventsChatReports;
/**
* Whether the server enforces secure chat.
*/
private boolean enforcesSecureChat;
/**
* Whether the server has previews chat enabled.
* <p>
* Chat Preview sends chat messages to the server as they are typed, even before they're sent.
* <a href="https://www.minecraft.net/es-mx/article/minecraft-snapshot-22w19a">More information</a>
* </p>
*/
private boolean previewsChat;
}