Class CustomBlock.Advanced

java.lang.Object
dev.lone.itemsadder.api.CustomBlock.Advanced
Enclosing class:
CustomBlock

public static class CustomBlock.Advanced extends Object
This class contains advanced static methods to perform various uncommon tasks, for example read/write directly into the ItemsAdder CustomBlocks region files. Use them only if you know what you're doing.
  • Constructor Details

    • Advanced

      public Advanced()
  • Method Details

    • getInCustomRegion

      @Nullable public static @Nullable String getInCustomRegion(org.bukkit.Location location)
      Gets the Namespace and ID in the format namespace:id of the placed CustomBlock in a specific location.
      Parameters:
      location - the location to check
      Returns:
      the Namespace and ID in the format namespace:id or null if it's not a CustomBlock.
    • placeInCustomRegion

      public static void placeInCustomRegion(@NotNull @NotNull CustomBlock customBlock, org.bukkit.Location location)
      Saves a block into the ItemsAdder custom region file.
      Parameters:
      customBlock - the CustomBlock to place.
      location - the location where the block must be placed.
    • placeInCustomRegion

      public static boolean placeInCustomRegion(String namespacedId, org.bukkit.Location location)
      Saves a block into the ItemsAdder custom region file.
      Parameters:
      namespacedId - the Namespace and ID in the format namespace:id of the CustomBlock to be placed.
      location - the location where the block must be placed.
      Returns:
      true if the namespacedId is a registered CustomBlock, otherwise false.
    • removeFromCustomRegion

      public static boolean removeFromCustomRegion(org.bukkit.Location location)
      Remove a CustomBlock from the custom region file.
      Parameters:
      location - the location of the block to remove.
      Returns:
      true if the block was removed because it was actually a CustomBlock, otherwise false in case the block wasn't custom (wasn't in the custom region file).
    • deleteAllCustomBlocksInChunk

      public static void deleteAllCustomBlocksInChunk(org.bukkit.Chunk chunk)
    • deleteAllCustomBlocksInChunk

      public static void deleteAllCustomBlocksInChunk(org.bukkit.Chunk chunk, boolean removeVanillaBlock, boolean sendChunkPacket)
    • getAllBlocksLocationsList

      @Nullable public static @Nullable List<org.bukkit.Location> getAllBlocksLocationsList(org.bukkit.Chunk chunk)
    • getAllBlocksLocations

      @Nullable public static @Nullable Map<org.bukkit.Location,String> getAllBlocksLocations(org.bukkit.Chunk chunk)
    • runActionOnBlocks

      public static void runActionOnBlocks(org.bukkit.Chunk chunk, BiConsumer<String,org.bukkit.Location> action)