Package fr.neatmonster.nocheatplus.permissions.PermissionUtil

Examples of fr.neatmonster.nocheatplus.permissions.PermissionUtil.CommandProtectionEntry


     * @deprecated Leads to compatibility issues with NPC plugins such as Citizens 2, due to recalculation of permissions (specifically during disabling).
     */
    public void undoCommandChanges() {
        if (changedCommands != null){
            while (!changedCommands.isEmpty()){
                final CommandProtectionEntry entry = changedCommands.remove(changedCommands.size() - 1);
                entry.restore();
            }
            changedCommands = null;
        }
    }
View Full Code Here

TOP

Related Classes of fr.neatmonster.nocheatplus.permissions.PermissionUtil.CommandProtectionEntry

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.