print("Initializing 'NA05 - NotEnoughRoofs Recipe Fixes for New Alterlite'..."); print("This script should fix the problem with Copper roofing recipes from the Not Enough Roofs mod only accepting its own copper ingot type, which is not used in this modpack."); // Remove Existing Copper Roof Recipes recipes.removeByRecipeName("notenoughroofs:copper_tiles_brick_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_brick_recipe2"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_brick_conn_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_recipe2"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_conn_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_big_oak_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_big_oak_recipe2"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_big_oak_conn_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_acacia_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_acacia_recipe2"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_acacia_conn_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_birch_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_birch_recipe2"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_birch_conn_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_jungle_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_jungle_recipe2"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_jungle_conn_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_oak_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_oak_recipe2"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_oak_conn_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_spruce_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_spruce_recipe2"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_planks_spruce_conn_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_stonebrick_recipe"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_stonebrick_recipe2"); recipes.removeByRecipeName("notenoughroofs:copper_tiles_stonebrick_conn_recipe"); // Start Adding in Replacement Recipes // Brick recipes.addShaped("copper_tiles_brick_recipe", * 8, [[, null, null], [, , null], [, , ]]); recipes.addShaped("copper_tiles_brick_recipe2", * 8, [[null, null, ], [null, , ], [, , ]]); recipes.addShaped("copper_tiles_brick_conn_recipe", * 4, [[null, null, null], [null, , null], [, , ]]); // Acacia recipes.addShaped("copper_tiles_planks_acacia_recipe2", * 8, [[null, null, ], [null, , ], [, , ]]); recipes.addShaped("copper_tiles_planks_acacia_recipe", * 8, [[, null, null], [, , null], [, , ]]); recipes.addShaped("copper_tiles_planks_acacia_conn_recipe", * 4, [[null, null, null], [null, , null], [, , ]]); // Dark Oak recipes.addShaped("copper_tiles_planks_big_oak_recipe", * 8, [[, null, null], [, , null], [, , ]]); recipes.addShaped("copper_tiles_planks_big_oak_recipe2", * 8, [[null, null, ], [null, , ], [, , ]]); recipes.addShaped("copper_tiles_planks_big_oak_conn_recipe", * 4, [[null, null, null], [null, , null], [, , ]]); // Birch recipes.addShaped("copper_tiles_planks_birch_recipe", * 8, [[, null, null], [, , null], [, , ]]); recipes.addShaped("copper_tiles_planks_birch_recipe2", * 8, [[null, null, ], [null, , ], [, , ]]); recipes.addShaped("copper_tiles_planks_birch_conn_recipe", * 4, [[null, null, null], [null, , null], [, , ]]); // Jungle recipes.addShaped("copper_tiles_planks_jungle_recipe", * 8, [[, null, null], [, , null], [, , ]]); recipes.addShaped("copper_tiles_planks_jungle_recipe2", * 8, [[null, null, ], [null, , ], [, , ]]); recipes.addShaped("copper_tiles_planks_jungle_conn_recipe", * 4, [[null, null, null], [null, , null], [, , ]]); // Oak recipes.addShaped("copper_tiles_planks_oak_recipe", * 8, [[, null, null], [, , null], [, , ]]); recipes.addShaped("copper_tiles_planks_oak_recipe2", * 8, [[null, null, ], [null, , ], [, , ]]); recipes.addShaped("copper_tiles_planks_oak_conn_recipe", * 4, [[null, null, null], [null, , null], [, , ]]); // Spruce recipes.addShaped("copper_tiles_planks_spruce_recipe2", * 8, [[null, null, ], [null, , ], [, , ]]); recipes.addShaped("copper_tiles_planks_spruce_recipe", * 8, [[, null, null], [, , null], [, , ]]); recipes.addShaped("copper_tiles_planks_spruce_conn_recipe", * 4, [[null, null, null], [null, , null], [, , ]]); // Stone Brick recipes.addShaped("copper_tiles_stonebrick_recipe2", * 8, [[null, null, ], [null, , ], [, , ]]); recipes.addShaped("copper_tiles_stonebrick_recipe", * 8, [[, null, null], [, , null], [, , ]]); recipes.addShaped("copper_tiles_stonebrick_conn_recipe", * 4, [[null, null, null], [null, , null], [, , ]]); print("Initialization of 'NA05 - NotEnoughRoofs Recipe Fixes for New Alterlite' has been completed.");