This commit is contained in:
Tamás Papp 2025-06-18 20:44:59 +02:00
commit 594098dd30
2 changed files with 2 additions and 2 deletions

View file

@ -167,7 +167,7 @@ class Client extends Connection {
encodedLoginPayload = JSON.stringify({
AuthenticationType: authType,
Token: '',
Certificate: JSON.stringify({ chain }), // Deprecated legacy certificate chain
Certificate: JSON.stringify({ chain }) // Deprecated legacy certificate chain
})
debug('Login payload', encodedLoginPayload)

View file

@ -8,7 +8,7 @@ const { RealmAPI } = require('prismarine-realms')
const AuthenticationType = {
Full: 0, // The player's own token
Guest: 1, // Split screen sessions, the player is using the host's token
SelfSigned: 2, // Not authenticated
SelfSigned: 2 // Not authenticated
}
function validateOptions (options) {