aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0245-Allow-chests-to-be-placed-with-NBT-data.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0245-Allow-chests-to-be-placed-with-NBT-data.patch')
-rw-r--r--patches/server/0245-Allow-chests-to-be-placed-with-NBT-data.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/patches/server/0245-Allow-chests-to-be-placed-with-NBT-data.patch b/patches/server/0245-Allow-chests-to-be-placed-with-NBT-data.patch
new file mode 100644
index 0000000000..7bb901ef2e
--- /dev/null
+++ b/patches/server/0245-Allow-chests-to-be-placed-with-NBT-data.patch
@@ -0,0 +1,31 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: BillyGalbreath <[email protected]>
+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/world/item/ItemStack.java b/src/main/java/net/minecraft/world/item/ItemStack.java
+index f53ce5f063d3b7b8d3f6a3bc1165d1788c112e6d..cc8825acea0d84b36194313656a6f70d8c049072 100644
+--- a/src/main/java/net/minecraft/world/item/ItemStack.java
++++ b/src/main/java/net/minecraft/world/item/ItemStack.java
+@@ -490,6 +490,7 @@ public final class ItemStack implements DataComponentHolder {
+ enuminteractionresult = InteractionResult.FAIL; // cancel placement
+ // PAIL: Remove this when MC-99075 fixed
+ placeEvent.getPlayer().updateInventory();
++ world.capturedTileEntities.clear(); // Paper - Allow chests to be placed with NBT data; clear out block entities as chests and such will pop loot
+ // revert back all captured blocks
+ world.preventPoiUpdated = true; // CraftBukkit - SPIGOT-5710
+ for (BlockState blockstate : blocks) {
+diff --git a/src/main/java/net/minecraft/world/level/block/entity/ChestBlockEntity.java b/src/main/java/net/minecraft/world/level/block/entity/ChestBlockEntity.java
+index 9d6262e286a00f840d88d6eb6bfdb304467466e3..b88aa184cd06a0485146f58a5b61a56a50911209 100644
+--- a/src/main/java/net/minecraft/world/level/block/entity/ChestBlockEntity.java
++++ b/src/main/java/net/minecraft/world/level/block/entity/ChestBlockEntity.java
+@@ -238,7 +238,7 @@ public class ChestBlockEntity extends RandomizableContainerBlockEntity implement
+ // CraftBukkit start
+ @Override
+ public boolean onlyOpCanSetNbt() {
+- return true;
++ return false; // Paper - Allow chests to be placed with NBT data
+ }
+ // CraftBukkit end
+ }