From f31eb87d39d6b2b52beb9c40ec31508ad1067363 Mon Sep 17 00:00:00 2001 From: Shane Freeder Date: Sat, 25 Nov 2017 17:53:42 +0000 Subject: [PATCH] Fix javadocs --- ...73-API-to-get-a-BlockState-without-a-snapshot.patch | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Spigot-API-Patches/0073-API-to-get-a-BlockState-without-a-snapshot.patch b/Spigot-API-Patches/0073-API-to-get-a-BlockState-without-a-snapshot.patch index 55c6e32c87..0591a40403 100644 --- a/Spigot-API-Patches/0073-API-to-get-a-BlockState-without-a-snapshot.patch +++ b/Spigot-API-Patches/0073-API-to-get-a-BlockState-without-a-snapshot.patch @@ -1,4 +1,4 @@ -From aae88baa26e12add72a7147db4840dcceb910663 Mon Sep 17 00:00:00 2001 +From 2ab4995d8bcb9c83e5ac45d99751509479c3b77d Mon Sep 17 00:00:00 2001 From: Aikar Date: Mon, 6 Nov 2017 21:10:01 -0500 Subject: [PATCH] API to get a BlockState without a snapshot @@ -9,7 +9,7 @@ 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 +index 235c15bd..359b81f3 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 { @@ -18,9 +18,9 @@ index 235c15bd..99603ac1 100644 + // Paper start + /** -+ * @see {{@link #getState()}}, optionally disables use of snapshot, to operate on real block data -+ * @param useSnapshot -+ * @return ++ * @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 + */ + BlockState getState(boolean useSnapshot); + // Paper end