geforkt von Mirrors/Paper
79f57aa18c
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
34 Zeilen
1012 B
Diff
34 Zeilen
1012 B
Diff
From aae88baa26e12add72a7147db4840dcceb910663 Mon Sep 17 00:00:00 2001
|
|
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
|
|
index 235c15bd..99603ac1 100644
|
|
--- a/src/main/java/org/bukkit/block/Block.java
|
|
+++ b/src/main/java/org/bukkit/block/Block.java
|
|
@@ -256,6 +256,15 @@ public interface Block extends Metadatable {
|
|
*/
|
|
BlockState getState();
|
|
|
|
+ // Paper start
|
|
+ /**
|
|
+ * @see {{@link #getState()}}, optionally disables use of snapshot, to operate on real block data
|
|
+ * @param useSnapshot
|
|
+ * @return
|
|
+ */
|
|
+ BlockState getState(boolean useSnapshot);
|
|
+ // Paper end
|
|
+
|
|
/**
|
|
* Returns the biome that this block resides in
|
|
*
|
|
--
|
|
2.15.0
|
|
|