From 061a29093737558a4d403430d40cf5b29b8c65cd Mon Sep 17 00:00:00 2001 From: Aikar Date: Wed, 15 Aug 2018 01:21:10 -0400 Subject: [PATCH] Fix NPE in CraftBanner due to null world, potentially other things fixed Banners only load color if the world is set. I don't know why... For some reason, the world was not set on these, so it was changing behavior. So if we want an accurate clone, world needs to be set. --- .../Pass-World-to-Tile-Entity-Snapshots.patch | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create 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 new file mode 100644 index 0000000000..4fa01d7e95 --- /dev/null +++ b/Spigot-Server-Patches/Pass-World-to-Tile-Entity-Snapshots.patch @@ -0,0 +1,20 @@ +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