#1067: Add preview chat option in ServerListPingEvent

By: Doc <nachito94@msn.com>
This commit is contained in:
CraftBukkit/Spigot
2022-06-18 20:55:26 +10:00
parent 63d419d302
commit 40a58283ca
3 changed files with 6 additions and 5 deletions

View File

@@ -834,8 +834,8 @@ public class CraftEventFactory {
/**
* Server methods
*/
public static ServerListPingEvent callServerListPingEvent(Server craftServer, InetAddress address, String motd, int numPlayers, int maxPlayers) {
ServerListPingEvent event = new ServerListPingEvent(address, motd, numPlayers, maxPlayers);
public static ServerListPingEvent callServerListPingEvent(Server craftServer, InetAddress address, String motd, boolean shouldSendChatPreviews, int numPlayers, int maxPlayers) {
ServerListPingEvent event = new ServerListPingEvent(address, motd, shouldSendChatPreviews, numPlayers, maxPlayers);
craftServer.getPluginManager().callEvent(event);
return event;
}