Skip to content

Commit

Permalink
Update CraftingGridCacheMixin.java
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba6000 committed Feb 12, 2025
1 parent 29891e2 commit 35e4c67
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ public class CraftingGridCacheMixin {
CallbackInfoReturnable<ICraftingLink> cir) {
ICraftingLink link = cir.getReturnValue();
if (link != null) { // job started successfully
boolean isMachine = e != null || list.isMachine();
boolean isMachine = requestingMachine != null || src.machine()
.isPresent();
IAEMixinCallbacks.getInstance()
.jobStarted(
new AECraftingCPUCluster((CraftingCPUCluster) ((CraftingLinkAccessor) link).callGetCpu()),
Expand Down

0 comments on commit 35e4c67

Please sign in to comment.