mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
Support 1.18.1 alternative start mode
Support 1.18.1 alternative start mode
This commit is contained in:
parent
589477888f
commit
ee1d53f2d6
1 changed files with 2 additions and 2 deletions
|
@ -87,8 +87,8 @@ public void run() throws Exception {
|
|||
}
|
||||
}
|
||||
}
|
||||
if(wrapper.profile != null && wrapper.profile.getVersion().compareTo(ClientProfile.Version.MC118) >= 0) {
|
||||
LogHelper.info("Switch to alternative start mode (1.18)");
|
||||
if(wrapper.profile != null && ((wrapper.profile.getVersion().compareTo(ClientProfile.Version.MC118) >= 0) || (wrapper.profile.getVersion().compareTo(ClientProfile.Version.MC1181) >= 0))) {
|
||||
LogHelper.info("Switch to alternative start mode (1.18+)");
|
||||
wrapper.config.classpath.add(jarName);
|
||||
wrapper.config.classLoaderConfig = ClientProfile.ClassLoaderConfig.LAUNCHER;
|
||||
altMode = true;
|
||||
|
|
Loading…
Reference in a new issue