diff --git a/Spigot-Server-Patches/0364-Allow-chests-to-be-placed-with-NBT-data.patch b/Spigot-Server-Patches/0364-Allow-chests-to-be-placed-with-NBT-data.patch new file mode 100644 index 0000000000..359cfc1d8b --- /dev/null +++ b/Spigot-Server-Patches/0364-Allow-chests-to-be-placed-with-NBT-data.patch @@ -0,0 +1,22 @@ +From 2778cdcac727ba60b80f7a3222f863e7bdb8dfc9 Mon Sep 17 00:00:00 2001 +From: BillyGalbreath +Date: Sat, 8 Sep 2018 18:43:31 -0500 +Subject: [PATCH] Allow chests to be placed with NBT data + + +diff --git a/src/main/java/net/minecraft/server/TileEntityChest.java b/src/main/java/net/minecraft/server/TileEntityChest.java +index 9573a4ecd..7594c16e9 100644 +--- a/src/main/java/net/minecraft/server/TileEntityChest.java ++++ b/src/main/java/net/minecraft/server/TileEntityChest.java +@@ -305,7 +305,7 @@ public class TileEntityChest extends TileEntityLootable { // Paper - Remove ITic + // CraftBukkit start + @Override + public boolean isFilteredNBT() { +- return true; ++ return false; // Paper + } + // CraftBukkit end + } +-- +2.18.0 +