escape strings for real tui

This commit is contained in:
Clément
2025-03-01 19:50:19 +01:00
parent f8f740f799
commit 10f6b059b1
4 changed files with 15 additions and 22 deletions

View File

@@ -41,7 +41,7 @@ public class ClientConnexion implements PacketVisitor, PacketHandler {
for (int i = 0; i < 5; i++) {
sendPacket(new HandshakePacket());
}
new Thread(() -> waitForHandshake()).start();
new Thread(this::waitForHandshake).start();
}
private void waitForHandshake() {