Temp remove integrity check, updating loader instance

This commit is contained in:
Dawson
2023-01-04 09:58:18 -05:00
parent a04577b194
commit e9bf178a1e
4 changed files with 8 additions and 8 deletions
@@ -110,7 +110,7 @@ public class AnticheatCommand extends BaseCommand {
private static WrappedMethod exitMethod = classSystem.getMethod("exit", int.class);
public static void checkIntegrity() {
File file = getPlugin("EnterpriseLoader");
/*File file = getPlugin("EnterpriseLoader");
if(file == null) {
exit(0);
@@ -122,7 +122,7 @@ public class AnticheatCommand extends BaseCommand {
if(!acceptableHashes.contains(hash)) {
System.out.println("Bad loader file!");
exit(0);
}
}*/
}
private static void exit(int number) {