Package com.sk89q.craftbook.util.compat

Examples of com.sk89q.craftbook.util.compat.NoCheatPlusCompatability


     *
     * This util needs initialization as it must check for available compatability handlers, and enable them if possible.
     */
    public static void init() {
        if(Bukkit.getPluginManager().getPlugin("NoCheatPlus") != null)
            compatChecks.add(new NoCheatPlusCompatability());
        if(Bukkit.getPluginManager().getPlugin("AntiCheat") != null)
            compatChecks.add(new AntiCheatCompatability());
    }
View Full Code Here

TOP

Related Classes of com.sk89q.craftbook.util.compat.NoCheatPlusCompatability

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.