2019-07-11 18:59:21 +02:00
|
|
|
From c450f7747478f3c2ca042ba4afc6aa65f76b156a Mon Sep 17 00:00:00 2001
|
2018-08-15 07:20:40 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
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
|
2019-07-11 18:59:21 +02:00
|
|
|
index b00c5613..0abd4377 100644
|
2018-08-15 07:20:40 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Chunk.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Chunk.java
|
2019-07-11 18:59:21 +02:00
|
|
|
@@ -101,13 +101,26 @@ public interface Chunk {
|
2019-03-20 01:28:15 +01:00
|
|
|
@NotNull
|
2018-08-15 07:20:40 +02:00
|
|
|
Entity[] getEntities();
|
|
|
|
|
|
|
|
+ // Paper start
|
2019-03-20 01:28:15 +01:00
|
|
|
+ /**
|
|
|
|
+ * Get a list of all tile entities in the chunk.
|
|
|
|
+ *
|
|
|
|
+ * @return The tile entities.
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ default BlockState[] getTileEntities() {
|
|
|
|
+ return getTileEntities(true);
|
|
|
|
+ }
|
|
|
|
+
|
2018-08-15 07:20:40 +02:00
|
|
|
/**
|
|
|
|
* Get a list of all tile entities in the chunk.
|
|
|
|
*
|
2019-03-20 01:28:15 +01:00
|
|
|
+ * @param useSnapshot Take snapshots or direct references
|
2018-08-15 07:20:40 +02:00
|
|
|
* @return The tile entities.
|
|
|
|
*/
|
2019-03-20 01:28:15 +01:00
|
|
|
@NotNull
|
2018-08-15 07:20:40 +02:00
|
|
|
- BlockState[] getTileEntities();
|
|
|
|
+ BlockState[] getTileEntities(boolean useSnapshot);
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the chunk is loaded.
|
|
|
|
--
|
2019-07-11 18:59:21 +02:00
|
|
|
2.22.0
|
2018-08-15 07:20:40 +02:00
|
|
|
|