Skip to content

Commit aaffe3d

Browse files
Remove unnecessary third argument in the holder of the Example Turbine. (#4204)
1 parent a43d217 commit aaffe3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/Modpacks/Examples/Multiblocks/Example_Turbine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Below is an example of a multiblock using the LargeTurbineMachine class for maki
4646
=== "Java"
4747
```java title="MultiMachines.java"
4848
public static final MultiblockMachineDefinition HYPER_GAS_TURBINE = REGISTRATE
49-
.multiblock("hyper_gas_turbine", (holder) -> new LargeTurbineMachine(holder, GTValues.LuV, 4)) // The value shows one rotor holder tier above the recommended minimum rotor holder. The tier of rotor holder provides a boost based on the efficiency stat.
49+
.multiblock("hyper_gas_turbine", (holder) -> new LargeTurbineMachine(holder, GTValues.LuV)) // The value shows one rotor holder tier above the recommended minimum rotor holder. The tier of rotor holder provides a boost based on the efficiency stat.
5050
.rotationState(RotationState.NON_Y_AXIS)
5151
.recipeType(GTRecipeTypes.GAS_TURBINE_FUELS)
5252
.recipeModifiers(GTRecipeModifiers.OC_NON_PERFECT_SUBTICK, GTRecipeModifiers.BATCH_MODE, LargeTurbineMachine::recipeModifier)

0 commit comments

Comments
 (0)