NBT Items are now ignored for facades.

This commit is contained in:
AlgorithmX2 2014-02-14 21:16:05 -06:00
parent 8808ca63c3
commit df7b9389e8

View file

@ -116,6 +116,9 @@ public class ItemFacade extends AEBaseItem implements IFacadeItem
b.getSubBlocks( item, b.getCreativeTabToDisplayOn(), tmpList );
for (ItemStack l : tmpList)
{
if ( l.hasTagCompound() )
continue;
ItemStack is = new ItemStack( this );
NBTTagCompound data = new NBTTagCompound();
int[] ds = new int[2];