Package com.bergerkiller.bukkit.common.bases

Examples of com.bergerkiller.bukkit.common.bases.IntVector3.toBlock()


      World world = owner.getWorld();
      for (Entry<IntVector3, MinecartMember<?>> entry : blockSpace.entrySet()) {
        IntVector3 pos = entry.getKey();
        for (RailType type : RailType.values()) {
          if (type.isRail(world, pos.x, pos.y, pos.z)) {
            Block block = pos.toBlock(world);
            List<Block> signs = entry.getValue().getBlockTracker().liveActiveSigns;
            Util.addSignsFromRails(signs, block, type.getSignColumnDirection(block));
          }
        }
      }
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.