Skip to content

Commit

Permalink
Circuit changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JuiceyBeans committed Sep 29, 2024
1 parent 7133311 commit 34ae556
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ private static void hardMiscRecipes(Consumer<FinishedRecipe> provider) {

ASSEMBLER_RECIPES.recipeBuilder("composter")
.inputItems(ItemTags.PLANKS, 4)
.circuitMeta(1)
.circuitMeta(23)
.outputItems(new ItemStack(Blocks.COMPOSTER))
.duration(80).EUt(6).save(provider);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ private static void woodRecipes(Consumer<FinishedRecipe> provider) {
ASSEMBLER_RECIPES.recipeBuilder("barrel")
.inputItems(ItemTags.PLANKS, 7)
.outputItems(new ItemStack(Blocks.BARREL))
.circuitMeta(3)
.circuitMeta(24)
.duration(100).EUt(4)
.save(provider);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ public static void registerWoodTypeRecipe(Consumer<FinishedRecipe> provider, @No
ASSEMBLER_RECIPES.recipeBuilder(name + "_fence")
.inputItems(entry.planks)
.outputItems(entry.fence)
.circuitMeta(1)
.circuitMeta(13)
.duration(100).EUt(4)
.save(provider);
}
Expand Down

0 comments on commit 34ae556

Please sign in to comment.