Examples of PSBuilder


Examples of com.massivecraft.mcore.ps.PSBuilder

      for (Entry<String,TerritoryAccess> entry2 : entry.getValue().entrySet())
      {
        String[] ChunkCoordParts = entry2.getKey().trim().split("[,\\s]+");
        int chunkX = Integer.parseInt(ChunkCoordParts[0]);
        int chunkZ = Integer.parseInt(ChunkCoordParts[1]);
        PS ps = new PSBuilder().chunkX(chunkX).chunkZ(chunkZ).build();
       
        TerritoryAccess territoryAccess = entry2.getValue();
       
        board.setTerritoryAccessAt(ps, territoryAccess);
      }
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.