Fix sheet metal and welding conflict (#1746)

* Fix sheet metal and welding conflict

* Increase amount and changelog

---------

Signed-off-by: Redeix <brayden.j.m.ford@gmail.com>
Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
This commit is contained in:
Spicy Noodles 2025-09-05 17:05:04 +01:00 committed by GitHub
parent d595adad95
commit a43ac77e27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 19 additions and 1 deletions

View file

@ -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

View file

@ -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
};