This commit is contained in:
mcrcortex
2024-09-29 10:44:50 +10:00
parent 3d2129c1d4
commit 640da6c1be

View File

@@ -35,7 +35,7 @@ public class VoxyCommon implements ModInitializer {
//This is hardcoded like this because people do not understand what they are doing //This is hardcoded like this because people do not understand what they are doing
private static final boolean GlobalVerificationDisableOverride = true;//System.getProperty("voxy.verificationDisableOverride", "false").equals("true"); private static final boolean GlobalVerificationDisableOverride = false;//System.getProperty("voxy.verificationDisableOverride", "false").equals("true");
public static boolean isVerificationFlagOn(String name) { public static boolean isVerificationFlagOn(String name) {
return (!GlobalVerificationDisableOverride) && System.getProperty("voxy."+name, "true").equals("true"); return (!GlobalVerificationDisableOverride) && System.getProperty("voxy."+name, "true").equals("true");
} }