mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-10 09:31:57 +01:00
SPIGOT-1401: Issues placing blocks adjacent to eachother
By: md_5 <git@md-5.net>
This commit is contained in:
parent
1070f2682f
commit
8eb1f2cdd7
@ -167,7 +167,7 @@
|
||||
+ BlockPosition newblockposition = new BlockPosition(x, y, z);
|
||||
+ IBlockData block = world.getType(newblockposition);
|
||||
+
|
||||
+ if (!(block instanceof BlockTileEntity)) { // Containers get placed automatically
|
||||
+ if (!(block.getBlock() instanceof BlockTileEntity)) { // Containers get placed automatically
|
||||
+ block.getBlock().onPlace(world, newblockposition, block);
|
||||
+ }
|
||||
+
|
||||
|
Loading…
Reference in New Issue
Block a user