Skip to content

Commit

Permalink
Merge remote-tracking branch 'asdflj/levelmaintainer' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Dream-Master committed Jan 15, 2023
2 parents 0cbb201 + f07d996 commit 240de07
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,9 @@ private TickRateModulation doWork() {
if (this.requests.isDone(i)) this.requests.setState(i, State.Idling);
if (cg.canEmitFor(craftItem)
|| cg.isRequesting(craftItem)
|| (inv.findPrecise(is) != null
&& inv.findPrecise(is).getStackSize() >= is.getStackSize())
|| inv.findPrecise(is) == null
|| !inv.findPrecise(is).isCraftable()
|| inv.findPrecise(is).getStackSize() >= is.getStackSize()
|| !this.requests.isDone(i)) continue;
// do crafting
Future<ICraftingJob> jobTask = requests.getJobs()[i];
Expand Down

0 comments on commit 240de07

Please sign in to comment.