Fix chests dropping their contents when upgraded. Closes #197

This commit is contained in:
alexbegt 2019-08-19 05:23:13 -04:00
parent 55a7af27e3
commit f14408fbef
1 changed files with 1 additions and 1 deletions

View File

@ -121,8 +121,8 @@ public class ChestChangerItem extends TooltipItem
tileEntity.updateContainingBlockInfo();
world.removeBlock(blockPos, false);
world.removeTileEntity(blockPos);
world.removeBlock(blockPos, false);
BlockState iBlockState = ChestType.get(this.type.target).with(ChestBlock.FACING, chestFacing);