Skip to content

Commit 1e14785

Browse files
Removal of redundant OC call. (#3954)
1 parent ab247ca commit 1e14785

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

docs/content/Modpacks/Examples/Example_Coil_Multiblock.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ Below is an example of a multiblock using the CoilWorkableElectricMultiblockMach
2020
.recipeTypes('pyrolyse_oven')
2121
.recipeModifiers(
2222
[
23-
GTRecipeModifiers.PARALLEL_HATCH,
24-
GTRecipeModifiers.OC_PERFECT,
25-
GTRecipeModifiers.BATCH_MODE,
23+
GTRecipeModifiers.PARALLEL_HATCH,
2624
(machine, recipe) => GTRecipeModifiers.pyrolyseOvenOverclock(machine, recipe)
2725
]
2826
)
@@ -64,7 +62,6 @@ Below is an example of a multiblock using the CoilWorkableElectricMultiblockMach
6462
.rotationState(RotationState.NON_Y_AXIS)
6563
.recipeType(GTRecipeTypes.PYROLYSE_RECIPES)
6664
.recipeModifiers(GTRecipeModifiers.PARALLEL_HATCH,
67-
GTRecipeModifiers.ELECTRIC_OVERCLOCK.apply(OverclockingLogic.PERFECT_OVERCLOCK),
6865
(machine, recipe) -> GTRecipeModifiers.pyrolyseOvenOverclock(machine, recipe))
6966
.appearanceBlock(GTBlocks.CASING_STEEL_SOLID)
7067
.pattern(definition -> FactoryBlockPattern.start()
@@ -103,5 +100,3 @@ Below is an example of a multiblock using the CoilWorkableElectricMultiblockMach
103100
```
104101

105102

106-
107-

0 commit comments

Comments
 (0)