Package org.randomgd.bukkit.workers.info

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

Related Classes of org.randomgd.bukkit.workers.info.GolemInfo

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.