From 029c448712b8bbad6e0f9c3787a687c5375cf978 Mon Sep 17 00:00:00 2001 From: taelnia Date: Wed, 27 Nov 2013 00:29:55 -0500 Subject: [PATCH] Add call to onInventoryChanged to extraction pipes --- common/buildcraft/transport/pipes/PipeItemsWood.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/buildcraft/transport/pipes/PipeItemsWood.java b/common/buildcraft/transport/pipes/PipeItemsWood.java index 4149a055..b338bcc6 100644 --- a/common/buildcraft/transport/pipes/PipeItemsWood.java +++ b/common/buildcraft/transport/pipes/PipeItemsWood.java @@ -129,6 +129,8 @@ public class PipeItemsWood extends Pipe implements IPowerRec if (extracted == null) return; + tile.onInventoryChanged(); + for (ItemStack stack : extracted) { if (stack == null || stack.stackSize == 0) { powerHandler.useEnergy(1, 1, true);