mirror of
https://github.com/AltarikMC/Launcher
synced 2025-12-13 11:41:45 +00:00
Fix import following an update of msmc (semver of msmc isn't correct)
This commit is contained in:
@@ -7,7 +7,7 @@ const { join } = require("path")
|
||||
const constants = require("constants")
|
||||
const zip = require("extract-zip")
|
||||
const logger = require("electron-log")
|
||||
const { auth, lst } = require("msmc")
|
||||
const { Auth, lst } = require("msmc")
|
||||
const decompress = require("decompress")
|
||||
const decompressTar = require("decompress-targz")
|
||||
|
||||
@@ -49,7 +49,7 @@ class Minecraft {
|
||||
* Used to login through a Microsoft account
|
||||
*/
|
||||
microsoftLogin(event, win) {
|
||||
const authManager = new auth("select_account")
|
||||
const authManager = new Auth("select_account")
|
||||
authManager.launch("electron").then(async xboxManager => {
|
||||
xboxManager.getMinecraft().then(async token => {
|
||||
if(!token.isDemo()) {
|
||||
|
||||
Reference in New Issue
Block a user