Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,11 @@ public boolean canPlaceItemThroughFace(int index, ItemStack itemStack, Direction
@Override
public boolean canTakeItemThroughFace(int index, ItemStack stack, Direction direction)
{
if (index == ARC_TOOL_SLOT)
{
return true;
}

return index >= OUTPUT_SLOT && index < OUTPUT_SLOT + NUM_OUTPUTS;
}

Expand Down Expand Up @@ -574,4 +579,4 @@ public FluidStack drain(int maxDrain, FluidAction action)
}
return drainedStack;
}
}
}