Examples of ICraftingParts


Examples of logisticspipes.proxy.interfaces.ICraftingParts

    return logisticsPipeType;
  }

  @Override
  public ICraftingParts getRecipeParts() {
    return new ICraftingParts() {
      @Override
      public ItemStack getChipTear1() {
        return new ItemStack(BuildCraftSilicon.redstoneChipset, 1, 1);
      }
View Full Code Here

Examples of logisticspipes.proxy.interfaces.ICraftingParts

    SimpleServiceLocator.machineProgressProvider.registerProgressProvider(LogisticsWrapperHandler.getWrappedProgressProvider("IC2", "Generic", IC2ProgressProvider.class));
   
   
    MainProxy.proxy.registerTileEntities();

    ICraftingParts parts = SimpleServiceLocator.buildCraftProxy.getRecipeParts();
    //NO BC => NO RECIPES (for now)
    if(parts != null) {
      SimpleServiceLocator.IC2Proxy.addCraftingRecipes(parts);
      SimpleServiceLocator.forestryProxy.addCraftingRecipes(parts);
      SimpleServiceLocator.thaumCraftProxy.addCraftingRecipes(parts);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.