From df7b9389e814875217b79dcf5ccaaa9a62362f8c Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Fri, 14 Feb 2014 21:16:05 -0600 Subject: [PATCH] NBT Items are now ignored for facades. --- items/parts/ItemFacade.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/items/parts/ItemFacade.java b/items/parts/ItemFacade.java index 40504c82c..7608fbc86 100644 --- a/items/parts/ItemFacade.java +++ b/items/parts/ItemFacade.java @@ -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];