Package cc.co.evenprime.bukkit.nocheat.config

Examples of cc.co.evenprime.bukkit.nocheat.config.ConfigurationManager


        // Then set up in memory per player data storage
        this.players = new PlayerManager(this);

        this.commandHandler = new CommandHandler(this);
        // Then read the configuration files
        this.conf = new ConfigurationManager(this, this.getDataFolder());

        eventManagers = new ArrayList<EventManager>(8); // Big enough
        // Then set up the event listeners
        eventManagers.add(new MovingCheckListener(this));
        eventManagers.add(new WorkaroundsListener());
View Full Code Here


        return false;
    }

    public void reloadConfiguration() {
        conf.cleanup();
        this.conf = new ConfigurationManager(this, this.getDataFolder());
        players.cleanDataMap();
    }
View Full Code Here

TOP

Related Classes of cc.co.evenprime.bukkit.nocheat.config.ConfigurationManager

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.