diff --git a/CHANGELOG.md b/CHANGELOG.md index 1745a422a..070f0b82c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,8 @@ - Sewing Tables now use a knife instead of shears @BlueBoat29 - Create Logistics Jars now hold 8000 mB each instead of just 1000 mB (#1707) @Ghoulcel - Added a way to keep your space suit with you on death, so you can more safely set your spawn on other planets (#1710) @BlueBoat29 -- Added Flax as a cold-weather alternative to jute and a plant-based option for light colored cloth @BlueBoat29 +- Added Flax as a cold-weather alternative to jute and a plant-based option for light colored cloth @BlueBoat29 +- Sheet metal blocks are now made in a stonecutter and their yield increased (#1746) @SpicyNoodle5 - Added a small amount of silver to the Bismith (Surface) vein @Pyritie ### Bug fixes - Fixed tongs getting stuck in ovens, and now you can use them the same way you'd previously use a Peel @Pyritie diff --git a/kubejs/server_scripts/createdeco/recipes.js b/kubejs/server_scripts/createdeco/recipes.js index 1b43e3787..40c502bbf 100644 --- a/kubejs/server_scripts/createdeco/recipes.js +++ b/kubejs/server_scripts/createdeco/recipes.js @@ -58,6 +58,12 @@ const registerCreatedecoRecipes = (event) => { event.remove({ type: 'minecraft:stonecutting', input: '#forge:storage_blocks/copper' }) event.remove({ type: 'minecraft:stonecutting', input: '#forge:storage_blocks/steel' }) event.remove({ type: 'minecraft:stonecutting', input: '#forge:storage_blocks/zinc' }) + event.remove({ id: 'createdeco:andesite_sheet_metal' }) + event.remove({ id: 'createdeco:brass_sheet_metal' }) + event.remove({ id: 'createdeco:iron_sheet_metal' }) + event.remove({ id: 'createdeco:copper_sheet_metal' }) + event.remove({ id: 'createdeco:industrial_iron_sheet_metal' }) + event.remove({ id: 'createdeco:zinc_sheet_metal' }) //#endregion //#region Lamp Recipes @@ -499,4 +505,15 @@ const registerCreatedecoRecipes = (event) => { .category(GTRecipeCategories.CHEM_DYES); // #endregion + + // #region Sheet Metal + + event.stonecutting('4x createdeco:andesite_sheet_metal', '#forge:plates/tin_alloy') + event.stonecutting('4x createdeco:brass_sheet_metal', '#forge:plates/brass') + event.stonecutting('4x createdeco:iron_sheet_metal', '#forge:plates/wrought_iron') + event.stonecutting('4x createdeco:copper_sheet_metal', '#forge:plates/copper') + event.stonecutting('4x createdeco:industrial_iron_sheet_metal', '#forge:plates/steel') + event.stonecutting('4x createdeco:zinc_sheet_metal', '#forge:plates/zinc') + + // #endregion };