Fixed NPE
This commit is contained in:
parent
7d34b02f78
commit
8769d0c29c
2 changed files with 2 additions and 2 deletions
|
@ -184,7 +184,7 @@ public class GT_MetaTileEntity_Scanner
|
|||
}
|
||||
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)));
|
||||
tNBTList.appendTag(new NBTTagString("Construction plan for "+tRecipe.mOutput.stackSize+" "+GT_LanguageManager.getTranslation(tRecipe.mOutput.getDisplayName())+". Needed EU/t: "+tRecipe.mEUt+" Production time: "+(tRecipe.mDuration/20)));
|
||||
for(int i=0;i<tRecipe.mInputs.length;i++){
|
||||
if(tRecipe.mInputs[i]!=null){
|
||||
tNBTList.appendTag(new NBTTagString("Input Bus "+(i+1)+": "+tRecipe.mInputs[i].stackSize+" "+GT_LanguageManager.getTranslation(tRecipe.mInputs[i].getDisplayName())));
|
||||
|
|
|
@ -1912,7 +1912,7 @@ public class GT_MachineRecipeLoader implements Runnable {
|
|||
GT_OreDictUnificator.get(OrePrefixes.spring, Materials.Osmium, 4L),
|
||||
GT_OreDictUnificator.get(OrePrefixes.cableGt04, Materials.ElectrumFlux, 8L)}, new FluidStack[]{
|
||||
Materials.Water.getFluid(10000),
|
||||
Materials.Mercury.getMolten(576),
|
||||
Materials.Mercury.getFluid(576),
|
||||
Materials.SolderingAlloy.getMolten(1296),
|
||||
Materials.Lubricant.getFluid(2000)}, ItemList.Electric_Piston_UV.get(1), 1800, 500000);
|
||||
|
||||
|
|
Loading…
Reference in a new issue