Something went wrong. Try again.
Connect to a configured server, front-and-center
minecraft
Something went wrong. Try again.
Java
at commit 0d566abf
123456789101112131415161718package dev.encode42.myserver.gui;
import net.minecraft.client.gui.components.Button;
import net.minecraft.network.chat.Component;
public class CommonButtons {
public static Button joinServer(final int width, final Button.OnPress onPress) { return Button.builder( Component.translatable("selectServer.select"), onPress ) .width(width) .build(); }}