/** * ------------------------------------------------------------ * * This file is part of the FTB Presents Direwolf20 1.12 Modpack for Minecraft * Copyright (c) 2019 Feed the Beast LLC. * * All Rights Reserved unless otherwise explicitly stated. * * ------------------------------------------------------------ */ /* Disable duplicate Bronze armour (Favouring Thermal Foundation) */ mods.jei.JEI.removeAndHide(); mods.jei.JEI.removeAndHide(); mods.jei.JEI.removeAndHide(); mods.jei.JEI.removeAndHide(); mods.jei.JEI.removeAndHide(); mods.jei.JEI.removeAndHide(); mods.jei.JEI.removeAndHide(); mods.jei.JEI.removeAndHide(); mods.jei.JEI.removeAndHide(); /* Fix broken bread recipe - How did this even happen? */ recipes.addShaped( * 1, [[, , ]]); /* Remove uranium casting to prevent cross-mod breakage */ mods.tconstruct.Casting.removeBasinRecipe(, ); /* Fix bug where casting cobalt blocks gives chisel block rather than tinkers' construct one */ mods.tconstruct.Casting.removeBasinRecipe(, ); mods.tconstruct.Casting.addBasinRecipe(, null, , 1296); /* Fixed a duplication bug with Thermal Expansion and Ender IO */ mods.thermalexpansion.RedstoneFurnace.removeRecipe(); /* Helpful tooltips */ .addTooltip(format.yellow("Can be made from any metal block")); /* This is not the easter egg you're looking for */ .addTooltip(format.darkPurple("Keep out of reach of Soaryns")); /* Fix cheap diamond recipe caused by mod cross compatibility */ mods.thermalexpansion.Compactor.removePressRecipe(); /* Fix an exploit allowing you to get leather with a Thermal Expansion Sawmill and Pam's HarvestCraft Woven Cotton */ recipes.remove(); recipes.addShaped( * 1, [ [, , ], [, null, ] ]); recipes.remove(); recipes.addShaped( * 1, [ [, null, ], [, , ], [, , ] ]); recipes.remove(); recipes.addShaped( * 1, [ [, , ], [, null, ], [, null, ] ]); recipes.remove(); recipes.addShaped( * 1, [ [, null, ], [, null, ] ]); /* Minecraft Utility Recipes - Sticks */ recipes.addShaped( * 16, [ [], [] ]); /* Minecraft Utility Recipes - Chest */ recipes.addShaped( * 4, [ [, , ], [, null, ], [, , ] ]); /* Minecraft Utility Recipes - Hopper */ recipes.addShaped( * 1, [ [, , ], [, , ], [null, ] ]); /* Addressess a conflicting recipe with iron gears and iron frames from advanced generators */ recipes.remove(); recipes.addShaped( * 2, [ [, null, ], [null, null, null], [, null, ] ]);