3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 04:20:08 +01:00

SPIGOT-2969: Shulker box removal not updating comparators

Dieser Commit ist enthalten in:
md_5 2016-12-28 14:23:52 +11:00
Ursprung 70bc70b4ee
Commit e2a288c863

Datei anzeigen

@ -52,3 +52,13 @@
TileEntityShulkerBox tileentityshulkerbox = (TileEntityShulkerBox) tileentity; TileEntityShulkerBox tileentityshulkerbox = (TileEntityShulkerBox) tileentity;
if (!tileentityshulkerbox.r() && tileentityshulkerbox.F()) { if (!tileentityshulkerbox.r() && tileentityshulkerbox.F()) {
@@ -123,8 +148,8 @@
a(world, blockposition, itemstack);
}
- world.updateAdjacentComparators(blockposition, iblockdata.getBlock());
}
+ world.updateAdjacentComparators(blockposition, iblockdata.getBlock()); // CraftBukkit - moved down
super.remove(world, blockposition, iblockdata);
}