mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FEATURE] Support Debug client with memory type
This commit is contained in:
parent
fca2ed2447
commit
198ce95176
1 changed files with 19 additions and 17 deletions
|
@ -36,6 +36,7 @@ public void run(String[] args) {
|
||||||
if(mainClass == null) {
|
if(mainClass == null) {
|
||||||
throw new NullPointerException("Add `-Dlauncher.runtime.mainclass=YOUR_MAIN_CLASS` to jvmArgs");
|
throw new NullPointerException("Add `-Dlauncher.runtime.mainclass=YOUR_MAIN_CLASS` to jvmArgs");
|
||||||
}
|
}
|
||||||
|
if(uuid == null) {
|
||||||
if(accessToken != null) {
|
if(accessToken != null) {
|
||||||
Request.setOAuth(authId, new AuthRequestEvent.OAuthRequestEvent(accessToken, refreshToken, expire));
|
Request.setOAuth(authId, new AuthRequestEvent.OAuthRequestEvent(accessToken, refreshToken, expire));
|
||||||
Request.RequestRestoreReport report = Request.restore(true, false);
|
Request.RequestRestoreReport report = Request.restore(true, false);
|
||||||
|
@ -55,6 +56,7 @@ public void run(String[] args) {
|
||||||
username = event.playerProfile.username;
|
username = event.playerProfile.username;
|
||||||
uuid = event.playerProfile.uuid.toString();
|
uuid = event.playerProfile.uuid.toString();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if(profileUUID != null) {
|
if(profileUUID != null) {
|
||||||
UUID profileUuid = UUID.fromString(profileUUID);
|
UUID profileUuid = UUID.fromString(profileUUID);
|
||||||
ProfilesRequest profiles = new ProfilesRequest();
|
ProfilesRequest profiles = new ProfilesRequest();
|
||||||
|
|
Loading…
Reference in a new issue