The in terrain anti cheat for admins is broken again

The in terrain anti cheat for admins is broken again

How are your admins getting under the terrain ? If they are nocliping they should have the admin flag which *should block in terrain violations.

They do have admin flag (through user.cfg and Permission manager) I had to paste this in hooks region for everything to work from an older thread i dug up to resolve. 

private object OnPlayerViolation(BasePlayer player, AntiHackType type)
{
    if (type == AntiHackType.InsideTerrain && player.IsAdmin) return false;
    return null;
}​