[FEATURE] Support Debug client with memory type

This commit is contained in:
Gravita 2023-10-31 00:14:38 +07:00
parent fca2ed2447
commit 198ce95176

View file

@ -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();