diff --git a/common/buildcraft/transport/ItemFacade.java b/common/buildcraft/transport/ItemFacade.java index cd215279..41625e15 100644 --- a/common/buildcraft/transport/ItemFacade.java +++ b/common/buildcraft/transport/ItemFacade.java @@ -140,6 +140,12 @@ public class ItemFacade extends ItemBuildCraft { return ((encoded & 0xFFF0) >>> 4); } + @Override + public boolean shouldPassSneakingClickToBlock(World worldObj, int x, int y, int z ) { + // Simply send shift click to the pipe / mod block. + return true; + } + public static void addFacade(ItemStack itemStack) { allFacades.add(new ItemStack(BuildCraftTransport.facadeItem, 1, ItemFacade.encode(itemStack.itemID, itemStack.getItemDamage())));