1
0
Fork 0

improve gui

This commit is contained in:
Sen 2025-08-11 15:59:40 +02:00
parent a7dacc36f8
commit cc2c78d995
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
41 changed files with 369 additions and 579 deletions

View file

@ -457,8 +457,6 @@ public class Client implements IThreadListener {
public int fbY;
public int mouseX;
public int mouseY;
public int total;
public int progress = -1;
private long lastTicked = 0L;
private long debugUpdateTime = System.currentTimeMillis();
@ -520,7 +518,6 @@ public class Client implements IThreadListener {
public BlockPos pointedLiquid;
public DisplayMode vidMode;
public String dimensionName;
public String message;
private ChunkClient emptyChunk;
private ChunkClient outsideChunk;
@ -665,7 +662,7 @@ public class Client implements IThreadListener {
}
public void displayConnecting(ServerInfo server) {
this.show(GuiLoading.makeWaitTask("Verbinde zu " + (server.getAddress() == null ? "localhost" : server.getAddress()) + ":" + server.getPort() + " ..."));
this.show(new GuiLoading("Verbinde zu " + (server.getAddress() == null ? "localhost" : server.getAddress()) + ":" + server.getPort() + " ..."));
}
public void connect(final ServerInfo server) {