/* SevTech: Ages Immersive Engineering Mixer Script This script handles custom integration control to a mod. Note: These scripts are created and for the usage in SevTech: Ages and other modpacks curated by DarkPacks. You can use these scripts for reference and for learning but not for copying and pasting and claiming as your own. */ import mods.GalacticraftTweaker; /* GalacticCraft & ExtraPlanets https://github.com/MJRLegends/ExtraPlanets/wiki/CraftTweakerSupport-1.12-only! https://github.com/MJRLegends/GalacticraftTweaker/wiki/CraftTweakerSupport */ function init() { // Remove tier 8 HD plate recipe GalacticraftTweaker.removeCompressorRecipe(); // Add corrected tier 8 HD plate recipe GalacticraftTweaker.addCompressorShapelessRecipe(, , , , , , ); // Remove all compressed steel plate recipes. GalacticraftTweaker.removeCompressorRecipe(); // Add the correct steel recipe back. GalacticraftTweaker.addCompressorShapelessRecipe(, , ); // Remove the compressed nickle plate recipe. GalacticraftTweaker.removeCompressorRecipe(); // Add back one which is using the correct ingot. GalacticraftTweaker.addCompressorShapelessRecipe(, metals.nickel.ingot.firstItem, metals.nickel.ingot.firstItem); }