Assembly Line configuration. #1252
@ VermillionX hope i get it right can you verifying it please? https://github.com/GTNewHorizons/NewHorizons/issues/1252
This commit is contained in:
parent
233ccbaa8f
commit
3aee6063cc
4 changed files with 8 additions and 8 deletions
|
@ -833,7 +833,7 @@ public class GT_RecipeAdder implements IGT_RecipeAdder {
|
|||
return false;
|
||||
}
|
||||
for(ItemStack tItem : aInputs){
|
||||
if(tItem==null)System.out.println("addAssemblylineRecipe"+aResearchItem.getDisplayName());
|
||||
if(tItem==null)System.out.println("addAssemblinglineRecipe"+aResearchItem.getDisplayName());
|
||||
}
|
||||
GT_Recipe.GT_Recipe_Map.sScannerFakeRecipes.addFakeRecipe(false, new ItemStack[]{aResearchItem}, new ItemStack[]{aOutput}, new ItemStack[]{ItemList.Tool_DataStick.getWithName(1L, "Writes Research result", new Object[0])}, null, null, aResearchTime, 30, 0);
|
||||
GT_Recipe.GT_Recipe_Map.sAssemblylineFakeRecipes.addFakeRecipe(false, aInputs, new ItemStack[]{aOutput}, new ItemStack[]{ItemList.Tool_DataStick.getWithName(1L, "Reads Research result", new Object[0])}, aFluidInputs, null, aDuration, aEUt, 0,true);
|
||||
|
|
|
@ -182,7 +182,7 @@ public class GT_MetaTileEntity_Scanner
|
|||
|
||||
tNBT.setTag("f"+i, tRecipe.mFluidInputs[i].writeToNBT(new NBTTagCompound()));
|
||||
}
|
||||
tNBT.setString("author", "Assembly Line Recipe Generator");
|
||||
tNBT.setString("author", "Assembling Line Recipe Generator");
|
||||
NBTTagList tNBTList = new NBTTagList();
|
||||
tNBTList.appendTag(new NBTTagString("Constructionplan for "+tRecipe.mOutput.stackSize+" "+GT_LanguageManager.getTranslation(tRecipe.mOutput.getDisplayName())+". Needed EU/t: "+tRecipe.mEUt+" Productiontime: "+(tRecipe.mDuration/20)));
|
||||
for(int i=0;i<tRecipe.mInputs.length;i++){
|
||||
|
|
|
@ -32,14 +32,14 @@ public class GT_MetaTileEntity_AssemblyLine
|
|||
}
|
||||
|
||||
public String[] getDescription() {
|
||||
return new String[]{"Assembly Line",
|
||||
return new String[]{"Assembling Line",
|
||||
"Size: 3x(5-16)x4, variable length",
|
||||
"Bottom: Steel Casing(or Maintenance or Input Hatch),",
|
||||
"Bottom: Solid Steel Casing(or Maintenance or Input Hatch),",
|
||||
"Input Bus(Last Output Bus), Steel Casing",
|
||||
"Middle: Reinforced Glass, Assembly Line, Reinforced Glass",
|
||||
"UpMiddle: Grate Casing, Assembling Casing,",
|
||||
"Middle: Reinforced Glass, Assembling Line Casing, Reinforced Glass",
|
||||
"UpMiddle: Grate Casing, Assembling Line Casing,",
|
||||
"Grate Casing(or Controller)",
|
||||
"Top: Steel Casing(or Energy Hatch)",
|
||||
"Top: Solid Steel Casing(or Energy Hatch)",
|
||||
"Up to 16 repeating slices, last is Output Bus"};
|
||||
}
|
||||
|
||||
|
|
|
@ -1222,7 +1222,7 @@ public class GT_Loader_MetaTileEntities implements Runnable {
|
|||
ItemList.CuringOven.set(new GT_MetaTileEntity_CuringOven(1166, "basicmachine.curingoven", "Curing Oven", 1).getStackForm(1));
|
||||
GT_ModHandler.addCraftingRecipe(ItemList.CuringOven.get(1L, new Object[0]), bitsd, new Object[]{"CWC", aTextCableHull, aTextMotorWire, 'M', ItemList.Hull_LV, 'E', OrePrefixes.circuit.get(Materials.Basic), 'W', GT_OreDictUnificator.get(OrePrefixes.cable, Materials.Tin, 1), 'C', GT_OreDictUnificator.get(OrePrefixes.wireGt01, Materials.Cupronickel, 1)});
|
||||
|
||||
ItemList.Machine_Multi_Assemblyline.set(new GT_MetaTileEntity_AssemblyLine(1170, "multimachine.assemblyline", "Assembly Line").getStackForm(1L));
|
||||
ItemList.Machine_Multi_Assemblyline.set(new GT_MetaTileEntity_AssemblyLine(1170, "multimachine.assemblyline", "Assembling Line").getStackForm(1L));
|
||||
GT_ModHandler.addCraftingRecipe(ItemList.Machine_Multi_Assemblyline.get(1L, new Object[0]), bitsd, new Object[]{aTextWireCoil, "EME", aTextWireCoil, 'M', ItemList.Hull_IV, 'W', ItemList.Casing_Assembler, 'E', OrePrefixes.circuit.get(Materials.Ultimate), 'C', ItemList.Robot_Arm_IV});
|
||||
|
||||
ItemList.Machine_Multi_DieselEngine.set(new GT_MetaTileEntity_DieselEngine(1171, "multimachine.dieselengine", "Diesel Engine").getStackForm(1L));
|
||||
|
|
Loading…
Reference in a new issue