remove multibox checks for banned

This commit is contained in:
2025-02-26 20:59:31 -06:00
parent c01d47fe21
commit 57e7c3285f
2 changed files with 1 additions and 11 deletions
-9
View File
@@ -114,13 +114,4 @@ public enum KeyCloneAudit {
}
}
public static void suspectMultibox(PlayerCharacter pc){
String machineID = pc.getClientConnection().machineID;
if(machineID.contains("rsIwTas")){
//Logger.error("MULTIBOX SOFTWARE DETECTED ON ACCOUNT: " + pc.getAccount().getUname());
//DbManager.AccountQueries.SET_TRASH(pc.getAccount().getUname(), "MULTIBOX");
//pc.getClientConnection().forceDisconnect();
}
}
}