Support 1.18.1 alternative start mode

Support 1.18.1 alternative start mode
This commit is contained in:
XuTpbl_JIuC 2021-12-18 12:46:01 +03:00 committed by GitHub
parent 589477888f
commit ee1d53f2d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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