Examples of ICheckData


Examples of fr.neatmonster.nocheatplus.checks.access.ICheckData

            }
            final String[] perms = entry.checkType.getConfigFactory().getConfig(player).getCachePermissions();
            if (perms == null) {
                continue;
            }
            final ICheckData data = entry.checkType.getDataFactory().getData(player);
            for (int j = 0; j < perms.length; j ++) {
                final String permission = perms[j];
                data.setCachedPermission(permission, player.hasPermission(permission));
            }
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.