Skip to content

Commit

Permalink
fix: Machines only pushing energy once every 5 ticks
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyPants authored Jan 24, 2025
1 parent 934e3ca commit c71b73c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ private void updatePowerState() {

@Override
protected int distributeResourcesInterval() {
return energyIOMode.canOutput() ? super.distributeResourcesInterval() : 1;
return energyIOMode.canOutput() ? 1 : super.distributeResourcesInterval();
}

@Override
Expand Down

0 comments on commit c71b73c

Please sign in to comment.