mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 01:10:37 +01:00
18c3716c49
This enables us a fast reference to the entities current chunk instead of having to look it up by hashmap lookups. We also store counts by type to further enable other performance optimizations in later patches.
24 lines
1.0 KiB
Diff
24 lines
1.0 KiB
Diff
From ae5bdca8944e22bbd51dd5c3a668844dc10297df 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
|
|
index 8811eb3e3..74e2e448f 100644
|
|
--- a/src/main/java/net/minecraft/server/BlockShulkerBox.java
|
|
+++ b/src/main/java/net/minecraft/server/BlockShulkerBox.java
|
|
@@ -112,6 +112,7 @@ public class BlockShulkerBox extends BlockTileEntity {
|
|
}
|
|
|
|
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
|
|
|