diff --git a/src/main/java/mekanism/common/content/transporter/StackSearcher.java b/src/main/java/mekanism/common/content/transporter/StackSearcher.java index 9c597b606..2110fe913 100644 --- a/src/main/java/mekanism/common/content/transporter/StackSearcher.java +++ b/src/main/java/mekanism/common/content/transporter/StackSearcher.java @@ -18,6 +18,7 @@ public class StackSearcher public StackSearcher(IInventory inventory, ForgeDirection direction) { theInventory = InventoryUtils.checkChestInv(inventory); + side = direction; if(!(theInventory instanceof ISidedInventory)) { i = inventory.getSizeInventory(); @@ -30,7 +31,6 @@ public class StackSearcher i = slots.length; } } - side = direction; } public InvStack takeTopStack(Finder id)