2017-05-21 04:41:39 +00:00
From 42c899818ae3a9f16b7da90a314238d331221108 Mon Sep 17 00:00:00 2001
2017-01-02 21:49:08 +00:00
From: Aikar <aikar@aikar.co>
Date: Mon, 2 Jan 2017 16:32:56 -0500
Subject: [PATCH] ShulkerBox Dupe Prevention
This ensures that Shulker Boxes can never drop their contents twice, and
that the inventory is cleared incase it some how also got saved to the world.
diff --git a/src/main/java/net/minecraft/server/BlockShulkerBox.java b/src/main/java/net/minecraft/server/BlockShulkerBox.java
2017-05-21 04:41:39 +00:00
index 717dc3245..96a279cb1 100644
2017-01-02 21:49:08 +00:00
--- a/src/main/java/net/minecraft/server/BlockShulkerBox.java
+++ b/src/main/java/net/minecraft/server/BlockShulkerBox.java
2017-05-14 18:05:01 +00:00
@@ -112,6 +112,7 @@ public class BlockShulkerBox extends BlockTileEntity {
2017-01-02 21:49:08 +00:00
}
a(world, blockposition, itemstack);
+ tileentityshulkerbox.clear(); // Paper - This was intended to be called in Vanilla (is checked in the if statement above if has been called) - Fixes dupe issues
}
world.updateAdjacentComparators(blockposition, iblockdata.getBlock());
--
2017-05-21 04:41:39 +00:00
2.13.0.windows.1
2017-01-02 21:49:08 +00:00