Show form window immediately after spawn (#606)

This commit is contained in:
Creeperface01 2020-05-20 17:12:03 +02:00 committed by GitHub
parent 3ab5c697c1
commit 5fe38fa83f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 5 deletions

View File

@ -110,7 +110,7 @@ public class UpstreamPacketHandler extends LoggingPacketHandler {
}
@Override
public boolean handle(MovePlayerPacket packet) {
public boolean handle(SetLocalPlayerAsInitializedPacket packet) {
if (!session.isLoggedIn() && !session.isLoggingIn() && session.getConnector().getAuthType() == AuthType.ONLINE) {
// TODO it is safer to key authentication on something that won't change (UUID, not username)
if (!couldLoginUserByName(session.getAuthData().getName())) {
@ -119,6 +119,11 @@ public class UpstreamPacketHandler extends LoggingPacketHandler {
// else we were able to log the user in
return true;
}
return translateAndDefault(packet);
}
@Override
public boolean handle(MovePlayerPacket packet) {
if (session.isLoggingIn()) {
session.sendMessage("Please wait until you are logged in...");
}

View File

@ -34,7 +34,6 @@ import com.nukkitx.network.util.Preconditions;
import com.nukkitx.protocol.bedrock.packet.LoginPacket;
import com.nukkitx.protocol.bedrock.packet.ServerToClientHandshakePacket;
import com.nukkitx.protocol.bedrock.util.EncryptionUtils;
import org.geysermc.common.window.CustomFormBuilder;
import org.geysermc.common.window.CustomFormWindow;
import org.geysermc.common.window.FormWindow;
@ -193,6 +192,8 @@ public class LoginEncryptionUtils {
String password = response.getInputResponses().get(2);
session.authenticate(email, password);
} else {
showLoginDetailsWindow(session);
}
// Clear windows so authentication data isn't accidentally cached
@ -205,6 +206,8 @@ public class LoginEncryptionUtils {
} else if (response.getClickedButtonId() == 1) {
session.disconnect("Login is required");
}
} else {
showLoginWindow(session);
}
}
}