Advertisement
Guest User

silicon_fix.zs

a guest
Dec 6th, 2019
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import mods.gregtech.recipe.RecipeMap;
  2.  
  3. val blast_furnace = mods.gregtech.recipe.RecipeMap.getByName("blast_furnace");
  4.  
  5. blast_furnace.findRecipe(120, [<ore:dustSilicon>.firstItem, <gregtech:meta_item_1:32766>], null).remove();
  6.  
  7. blast_furnace.recipeBuilder()
  8. .inputs([<ore:dustSilicon>])
  9. .outputs(<ore:ingotSilicon>.firstItem)
  10. .property("temperature", 1687)
  11. .property("ciruit", 0)
  12. .duration(944)
  13. .EUt(120)
  14. .buildAndRegister();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement