2018-12-21 17:09:17 +01:00
|
|
|
From 33502f142938f89056e273cdbea58ca83c760d89 Mon Sep 17 00:00:00 2001
|
2017-11-24 08:28:57 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 6 Nov 2017 21:10:01 -0500
|
|
|
|
Subject: [PATCH] API to get a BlockState without a snapshot
|
|
|
|
|
|
|
|
This allows you to get a BlockState without creating a snapshot, operating
|
|
|
|
on the real tile entity.
|
|
|
|
|
|
|
|
This is useful for where performance is needed
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/block/Block.java b/src/main/java/org/bukkit/block/Block.java
|
2018-12-21 17:09:17 +01:00
|
|
|
index 46a29d3d..e3337d05 100644
|
2017-11-24 08:28:57 +01:00
|
|
|
--- a/src/main/java/org/bukkit/block/Block.java
|
|
|
|
+++ b/src/main/java/org/bukkit/block/Block.java
|
2018-12-21 17:09:17 +01:00
|
|
|
@@ -227,6 +227,15 @@ public interface Block extends Metadatable {
|
2017-11-24 08:28:57 +01:00
|
|
|
*/
|
|
|
|
BlockState getState();
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
2017-11-25 18:53:42 +01:00
|
|
|
+ * @see #getState() optionally disables use of snapshot, to operate on real block data
|
|
|
|
+ * @param useSnapshot if this block is a TE, should we create a fully copy of the TileEntity
|
|
|
|
+ * @return BlockState with the current state of this block
|
2017-11-24 08:28:57 +01:00
|
|
|
+ */
|
|
|
|
+ BlockState getState(boolean useSnapshot);
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Returns the biome that this block resides in
|
|
|
|
*
|
|
|
|
--
|
2018-12-21 17:09:17 +01:00
|
|
|
2.20.1
|
2017-11-24 08:28:57 +01:00
|
|
|
|