Examples of GolemInfo


Examples of org.randomgd.bukkit.workers.info.GolemInfo

    Material material = stack.getType();
    UUID uuid = entity.getUniqueId();
    WorkerInfo currentInfo = workerStack.get(uuid);
    if (material.equals(Material.TORCH)) {
      if (currentInfo == null) {
        currentInfo = new GolemInfo();
        workerStack.put(uuid, currentInfo);
      }
      give(currentInfo, player, stack, material);
    } else if (material.equals(Material.STICK)) {
      if (currentInfo != null) {
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.