[TASK] Removed exit of Java 9+

This commit is contained in:
Jeroen Ketelaar
2019-05-21 23:36:31 -05:00
parent 40aa30e868
commit a7141c4268
+1 -2
View File
@@ -33,12 +33,11 @@ public final class Landing {
if (Context.getJavaVersion() >= 9) { if (Context.getJavaVersion() >= 9) {
UILog.log("Parabot", "Parabot doesn't support Java 9+ currently. Please downgrade to Java 8 to ensure Parabot is working correctly."); UILog.log("Parabot", "Parabot doesn't support Java 9+ currently. Please downgrade to Java 8 to ensure Parabot is working correctly.");
System.exit(0);
} }
if (!System.getProperty("os.arch").contains("64")) { if (!System.getProperty("os.arch").contains("64")) {
UILog.log("Parabot", "You are not running a 64-bit version of Java, this might cause the client to lag or crash unexpectedly.\r\n" + UILog.log("Parabot", "You are not running a 64-bit version of Java, this might cause the client to lag or crash unexpectedly.\r\n" +
"It's recommended to upgrade to a 64-bit version."); "It is recommended to upgrade to a 64-bit version.");
} }
parseArgs(args); parseArgs(args);