Change Remaining calls to old circuit constructor to .circuit()

This commit is contained in:
IntegerLimit 2023-04-13 17:19:04 +10:00
parent 6ed7e2528a
commit e9b3b6b243
2 changed files with 3 additions and 3 deletions

View File

@ -335,7 +335,7 @@ recipes.addShapeless(<thermalfoundation:fertilizer> * 16, [<ore:dustWood>, <ore:
//Add recipe for Iron Trapdoor
assembler.recipeBuilder()
.inputs(<ore:plateIron> * 4)
.notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 6}))
.circuit(6)
.outputs(<minecraft:iron_trapdoor>)
.duration(200).EUt(16).buildAndRegister();

View File

@ -206,7 +206,7 @@ recipes.addShaped(<meta_tile_entity:hull.ulv>, [
//Phenol and Coke
pyrolyse_oven.recipeBuilder()
.inputs([<minecraft:coal> * 16])
.notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 14}))
.circuit(14)
.fluidInputs([<liquid:steam> * 4000])
.outputs([<metaitem:gemCoke> * 20])
.fluidOutputs([<liquid:phenol> * 1000])
@ -215,7 +215,7 @@ pyrolyse_oven.recipeBuilder()
//Phenol and Coke dust
pyrolyse_oven.recipeBuilder()
.inputs([<metaitem:dustCoal> * 16])
.notConsumable(<metaitem:circuit.integrated>.withTag({Configuration: 11}))
.circuit(11)
.fluidInputs([<liquid:steam> * 4000])
.outputs([<metaitem:dustCoke> * 20])
.fluidOutputs([<liquid:phenol> * 1000])