NBT Items are now ignored for facades.
This commit is contained in:
parent
8808ca63c3
commit
df7b9389e8
1 changed files with 3 additions and 0 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue