This commit is contained in:
2025-03-10 12:42:40 +01:00
parent a2a5e96dc5
commit 980527f45f

View File

@@ -37,7 +37,7 @@ public class ServerConnexion implements PacketVisitor {
}
private boolean checkLogin() {
if (this.chatterName.isEmpty()) {
if (this.chatterName != null && this.chatterName.isEmpty()) {
sendPacket(new ServerResponsePacket(Response.AuthError));
return false;
}