mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
Вынесен профиль при запуске
This commit is contained in:
parent
ab17b72285
commit
de69eb45a4
1 changed files with 4 additions and 1 deletions
|
@ -171,6 +171,8 @@ public void write(HOutput output) throws IOException {
|
|||
@LauncherAPI
|
||||
public static String title;
|
||||
@LauncherAPI
|
||||
public static ClientProfile profile;
|
||||
@LauncherAPI
|
||||
public static final String SKIN_DIGEST_PROPERTY = "skinDigest";
|
||||
|
||||
@LauncherAPI
|
||||
|
@ -445,7 +447,7 @@ public static void main(String... args) throws Throwable {
|
|||
Files.delete(paramsFile);
|
||||
}
|
||||
}
|
||||
|
||||
ClientLauncher.profile = profile.object;
|
||||
title = params.title;
|
||||
Launcher.modulesManager.initModules();
|
||||
// Verify ClientLauncher sign and classpath
|
||||
|
@ -506,6 +508,7 @@ private static LinkedList<Path> resolveClassPathList(Path clientDir, String... c
|
|||
|
||||
@LauncherAPI
|
||||
public static void setProfile(ClientProfile profile) {
|
||||
ClientLauncher.profile = profile;
|
||||
ClientLauncher.title = profile.getTitle();
|
||||
LogHelper.debug("New Profile name: %s", profile.getTitle());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue