diff --git a/src/generated/resources/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e b/src/generated/resources/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e index 8714e9e5..29a4602c 100644 --- a/src/generated/resources/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e +++ b/src/generated/resources/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e @@ -1,9 +1,9 @@ -// 1.20.1 2025-08-19T11:46:11.8897606 Recipes +// 1.20.1 2025-08-19T12:15:05.6622524 Recipes 8e18331462285f0f09e5897f4cd797c89b6ffc23 data/tfmg/recipes/sequenced_assembly/capacitor.json 782800c146c9d0485149cf0c1c552274ca6e78da data/tfmg/recipes/sequenced_assembly/generator.json 1ec9510103d905de21001b87c64f4d4db0a9299f data/tfmg/recipes/sequenced_assembly/heavy_plate.json 3dcce4adf59b0d9041fb7dd8316223af1696ec81 data/tfmg/recipes/sequenced_assembly/motor.json 6943441658b1aa9175e6dce859896609b2d7aa28 data/tfmg/recipes/sequenced_assembly/potentiometer.json -8f13209dd3e7b717b5e5342665d1416ba8d56c90 data/tfmg/recipes/sequenced_assembly/steel_mechanism.json +a2b2311863219150397b12d30d84e12113ba3dd2 data/tfmg/recipes/sequenced_assembly/steel_mechanism.json 70be470bb0b72de21713f1c0e08a529780a199c0 data/tfmg/recipes/sequenced_assembly/transistor.json cdf0bd7304a854c1db7e9caf65e1490b146931c5 data/tfmg/recipes/sequenced_assembly/unfinished_circuit_board.json diff --git a/src/generated/resources/data/tfmg/recipes/sequenced_assembly/steel_mechanism.json b/src/generated/resources/data/tfmg/recipes/sequenced_assembly/steel_mechanism.json deleted file mode 100644 index f298bc98..00000000 --- a/src/generated/resources/data/tfmg/recipes/sequenced_assembly/steel_mechanism.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "type": "create:sequenced_assembly", - "ingredient": { - "item": "tfmg:heavy_plate" - }, - "loops": 2, - "results": [ - { - "chance": 120.0, - "item": "tfmg:steel_mechanism" - }, - { - "chance": 4.0, - "item": "minecraft:compass" - }, - { - "chance": 4.0, - "item": "tfmg:steel_ingot" - } - ], - "sequence": [ - { - "type": "create:deploying", - "ingredients": [ - { - "item": "tfmg:unfinished_steel_mechanism" - }, - { - "item": "tfmg:steel_cogwheel" - } - ], - "results": [ - { - "item": "tfmg:unfinished_steel_mechanism" - } - ] - }, - { - "type": "create:deploying", - "ingredients": [ - { - "item": "tfmg:unfinished_steel_mechanism" - }, - { - "tag": "forge:plates/nickel" - } - ], - "results": [ - { - "item": "tfmg:unfinished_steel_mechanism" - } - ] - }, - { - "type": "create:deploying", - "ingredients": [ - { - "item": "tfmg:unfinished_steel_mechanism" - }, - { - "item": "tfmg:large_steel_cogwheel" - } - ], - "results": [ - { - "item": "tfmg:unfinished_steel_mechanism" - } - ] - }, - { - "type": "create:deploying", - "ingredients": [ - { - "item": "tfmg:unfinished_steel_mechanism" - }, - { - "tag": "forge:plates/steel" - } - ], - "results": [ - { - "item": "tfmg:unfinished_steel_mechanism" - } - ] - }, - { - "type": "create:deploying", - "ingredients": [ - { - "item": "tfmg:unfinished_steel_mechanism" - }, - { - "item": "tfmg:screw" - } - ], - "results": [ - { - "item": "tfmg:unfinished_steel_mechanism" - } - ] - }, - { - "type": "create:deploying", - "ingredients": [ - { - "item": "tfmg:unfinished_steel_mechanism" - }, - { - "item": "tfmg:screwdriver" - } - ], - "results": [ - { - "item": "tfmg:unfinished_steel_mechanism" - } - ] - } - ], - "transitionalItem": { - "item": "tfmg:unfinished_steel_mechanism" - } -} \ No newline at end of file diff --git a/src/main/java/com/drmangotea/tfmg/datagen/recipes/values/create/TFMGSequencedAssemblyRecipeGen.java b/src/main/java/com/drmangotea/tfmg/datagen/recipes/values/create/TFMGSequencedAssemblyRecipeGen.java index c7279fb8..50c14462 100644 --- a/src/main/java/com/drmangotea/tfmg/datagen/recipes/values/create/TFMGSequencedAssemblyRecipeGen.java +++ b/src/main/java/com/drmangotea/tfmg/datagen/recipes/values/create/TFMGSequencedAssemblyRecipeGen.java @@ -84,7 +84,7 @@ public class TFMGSequencedAssemblyRecipeGen extends TFMGRecipeProvider { .addStep(DeployerApplicationRecipe::new, rb -> rb.require(TFMGBlocks.STEEL_COGWHEEL)) .addStep(DeployerApplicationRecipe::new, rb -> rb.require(nickelSheet())) .addStep(DeployerApplicationRecipe::new, rb -> rb.require(TFMGBlocks.LARGE_STEEL_COGWHEEL)) - .addStep(DeployerApplicationRecipe::new, rb -> rb.require(steelSheet())) + .addStep(DeployerApplicationRecipe::new, rb -> rb.require(leadSheet())) .addStep(DeployerApplicationRecipe::new, rb -> rb.require(TFMGItems.SCREW)) .addStep(DeployerApplicationRecipe::new, rb -> rb.require(TFMGItems.SCREWDRIVER))