Skip to content

Commit

Permalink
Merge pull request #799 from refinedmods/fix/GH-612/relay-fixes
Browse files Browse the repository at this point in the history
fix: tasks not stepping in output network
  • Loading branch information
raoulvdberge authored Feb 1, 2025
2 parents b68ee9f + 0c5e17e commit 40fc4d8
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ public RelayBlockEntity(final BlockPos pos, final BlockState state) {
setRedstoneMode(RedstoneMode.LOW);
}

@Override
public void doWork() {
super.doWork();
ticker.tick(outputNode);
}

boolean isFuzzyMode() {
return filter.isFuzzyMode();
}
Expand Down

0 comments on commit 40fc4d8

Please sign in to comment.