From f5e95be3225e798b6082f4299510a32cc3b7ef17 Mon Sep 17 00:00:00 2001 From: Aikar Date: Mon, 3 Sep 2018 12:23:25 -0400 Subject: [PATCH] Remove Pass World Tile Entities patch Some things break from this, while this was trying to fix other things since the thing this patch tried to fix still had problems and required yet another fix, just going to remove this patch. --- .../Pass-World-to-Tile-Entity-Snapshots.patch | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 Spigot-Server-Patches/Pass-World-to-Tile-Entity-Snapshots.patch diff --git a/Spigot-Server-Patches/Pass-World-to-Tile-Entity-Snapshots.patch b/Spigot-Server-Patches/Pass-World-to-Tile-Entity-Snapshots.patch deleted file mode 100644 index 4fa01d7e95..0000000000 --- a/Spigot-Server-Patches/Pass-World-to-Tile-Entity-Snapshots.patch +++ /dev/null @@ -1,20 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Aikar -Date: Wed, 15 Aug 2018 01:19:04 -0400 -Subject: [PATCH] Pass World to Tile Entity Snapshots - - -diff --git a/src/main/java/org/bukkit/craftbukkit/block/CraftBlockEntityState.java b/src/main/java/org/bukkit/craftbukkit/block/CraftBlockEntityState.java -index d4d9c5fc50..a72bbdbedb 100644 ---- a/src/main/java/org/bukkit/craftbukkit/block/CraftBlockEntityState.java -+++ b/src/main/java/org/bukkit/craftbukkit/block/CraftBlockEntityState.java -@@ -0,0 +0,0 @@ public class CraftBlockEntityState extends CraftBlockState - if (DISABLE_SNAPSHOT) { - this.snapshot = this.tileEntity; - } else { -- this.snapshot = this.createSnapshot(this.tileEntity, null); -+ this.snapshot = this.createSnapshot(this.tileEntity, tileEntity.getWorld()); - } - // copy tile entity data: - if(this.snapshot != null) { --- \ No newline at end of file