Skip to content

Commit

Permalink
Speed up decompression module by removing "busy" status
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Sep 11, 2023
1 parent d83ae8e commit b9b8244
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public boolean pushPattern(IPatternDetails patternDetails, KeyCounter[] inputHol

@Override
public boolean isBusy() {
return !outputs.isEmpty();
return false;
}

@Override
Expand All @@ -84,7 +84,7 @@ public IPartModel getStaticModels() {

@Override
public TickingRequest getTickingRequest(IGridNode node) {
return new TickingRequest(1, 1, !isBusy(), true);
return new TickingRequest(1, 1, outputs.isEmpty(), true);
}

@Override
Expand Down

0 comments on commit b9b8244

Please sign in to comment.