Fix immediate crash for some users

Dieser Commit ist enthalten in:
IronApollo 2020-02-21 18:26:43 -05:00
Ursprung 62cb04b8ca
Commit 3a050fba3b

Datei anzeigen

@ -360,7 +360,7 @@ public class Fawe {
}
String arch = System.getenv("PROCESSOR_ARCHITECTURE");
String wow64Arch = System.getenv("PROCESSOR_ARCHITEW6432");
boolean x86OS = !(arch.endsWith("64") || wow64Arch != null && wow64Arch.endsWith("64"));
boolean x86OS = arch == null ? true : !(arch.endsWith("64") || wow64Arch != null && wow64Arch.endsWith("64"));
boolean x86JVM = System.getProperty("sun.arch.data.model").equals("32");
if (x86OS != x86JVM) {
debug("====== UPGRADE TO 64-BIT JAVA ======");