Paper/Spigot-Server-Patches/0170-ShulkerBox-Dupe-Prevention.patch

24 lines
1.1 KiB
Diff
Raw Normal View History

2018-07-17 20:32:05 +00:00
From 394e5e84f0310ea3992761cda1895646bbc1d24a Mon Sep 17 00:00:00 2001
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
2018-07-17 20:32:05 +00:00
index a823e7073..37ec634f6 100644
--- a/src/main/java/net/minecraft/server/BlockShulkerBox.java
+++ b/src/main/java/net/minecraft/server/BlockShulkerBox.java
2018-07-17 20:32:05 +00:00
@@ -100,6 +100,7 @@ public class BlockShulkerBox extends BlockTileEntity {
}
2018-07-17 20:32:05 +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());
--
2.18.0