Adjusted TilePlacer to place exact block data
This commit is contained in:
parent
140d7a4661
commit
abaa0cf7ef
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ public class TilePlacer extends TileInventory implements IRotatable, IPacketRece
|
|||
|
||||
if (tile instanceof IInventory)
|
||||
{
|
||||
ItemStack candidate = new ItemStack(InventoryUtility.takeTopItemBlockFromInventory((IInventory) tile, dir.ordinal()));
|
||||
ItemStack candidate = InventoryUtility.takeTopBlockFromInventory((IInventory) tile, dir.ordinal());
|
||||
if (candidate != null)
|
||||
{
|
||||
incrStackSize(0, candidate);
|
||||
|
|
Loading…
Reference in a new issue