Package fr.neatmonster.nocheatplus.checks.access

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

Related Classes of fr.neatmonster.nocheatplus.checks.access.ICheckData

Copyright © 2018 www.massapicom. 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.