From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Aikar Date: Wed, 15 Aug 2018 01:04:58 -0400 Subject: [PATCH] Ability to get Tile Entities from a chunk without snapshots diff --git a/src/main/java/org/bukkit/Chunk.java b/src/main/java/org/bukkit/Chunk.java index 57976bbe682d2309f7d15d5dcd3ad7f8049429ec..546888898d9d6827079fe041c7bc6eb4e1e4605c 100644 --- a/src/main/java/org/bukkit/Chunk.java +++ b/src/main/java/org/bukkit/Chunk.java @@ -124,7 +124,30 @@ public interface Chunk extends PersistentDataHolder { * @return The tile entities. */ @NotNull - BlockState[] getTileEntities(); + // Paper start + default BlockState[] getTileEntities() { + return getTileEntities(true); + } + + /** + * Get a list of all tile entities in the chunk. + * + * @param useSnapshot Take snapshots or direct references + * @return The tile entities. + */ + @NotNull + BlockState[] getTileEntities(boolean useSnapshot); + + /** + * Get a list of all tile entities that match a given predicate in the chunk. + * + * @param blockPredicate The predicate of blocks to return tile entities for + * @param useSnapshot Take snapshots or direct references + * @return The tile entities. + */ + @NotNull + Collection getTileEntities(java.util.function.@NotNull Predicate blockPredicate, boolean useSnapshot); + // Paper end /** * Checks if the chunk is fully generated.