Examples of NoCheatPlayerImpl


Examples of cc.co.evenprime.bukkit.nocheat.player.NoCheatPlayerImpl

     * Get a data object of the specified class. If none is stored yet, create
     * one.
     */
    public NoCheatPlayer getPlayer(Player player) {

        NoCheatPlayerImpl p = this.players.get(player.getName().toLowerCase());

        if(p == null) {
            p = new NoCheatPlayerImpl(player, plugin);
            this.players.put(player.getName().toLowerCase(), p);
        }

        p.setLastUsedTime(System.currentTimeMillis());
        p.refresh(player);

        return p;
    }
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.