Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-27 16:40:14 +01:00
log user auto-logins and note to improve
Dieser Commit ist enthalten in:
Ursprung
bf7c74e072
Commit
ae9d51c8b7
@ -97,8 +97,11 @@ public class UpstreamPacketHandler extends LoggingPacketHandler {
|
|||||||
UserAuthenticationInfo info = connector.getConfig().getUserAuths().get(bedrockUsername);
|
UserAuthenticationInfo info = connector.getConfig().getUserAuths().get(bedrockUsername);
|
||||||
|
|
||||||
if (info != null) {
|
if (info != null) {
|
||||||
connector.getLogger().debug("using stored credentials for bedrock user " + session.getAuthenticationData().getName());
|
connector.getLogger().info("using stored credentials for bedrock user " + session.getAuthenticationData().getName());
|
||||||
session.authenticate(info.email, info.password);
|
session.authenticate(info.email, info.password);
|
||||||
|
|
||||||
|
// TODO send a message to bedrock user telling them they are connected (if nothing like a motd
|
||||||
|
// somes from the Java server w/in a few seconds)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren