blob: e271f4c2f8affe7d985e307d2954b2ea6f7df860 [file] [log] [blame] [raw]
package protocolsupport.api.events;
import java.net.InetSocketAddress;
@Deprecated
public class LegacyServerPingResponseEvent extends ServerPingResponseEvent {
public LegacyServerPingResponseEvent(InetSocketAddress address, String motd, int maxPlayers) {
super(address, null, null, motd, maxPlayers, null);
}
}