@@ -106,9 +106,8 @@ public class SimpleTieredMachine extends WorkableTieredMachine
106106 @ Nullable
107107 protected ISubscription exportItemSubs , exportFluidSubs , energySubs ;
108108
109- public SimpleTieredMachine (BlockEntityCreationInfo info , int tier , Int2IntFunction tankScalingFunction ,
110- WorkableTieredMachineTraits traits ) {
111- super (info , tier , tankScalingFunction , traits );
109+ public SimpleTieredMachine (BlockEntityCreationInfo info , int tier , Int2IntFunction tankScalingFunction ) {
110+ super (info , tier , tankScalingFunction );
112111 this .outputFacingItems = hasFrontFacing () ? getFrontFacing ().getOpposite () : Direction .UP ;
113112 this .outputFacingFluids = outputFacingItems ;
114113
@@ -126,10 +125,6 @@ public int getSlotLimit(int slot) {
126125 .setFilter (IntCircuitBehaviour ::isIntegratedCircuit );
127126 }
128127
129- public SimpleTieredMachine (BlockEntityCreationInfo info , int tier , Int2IntFunction tankScalingFunction ) {
130- this (info , tier , tankScalingFunction , new WorkableTieredMachineTraits ());
131- }
132-
133128 //////////////////////////////////////
134129 // ***** Initialization ******//
135130 //////////////////////////////////////
0 commit comments