Skip to content

Commit

Permalink
Update GTCM_LightningSpire.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Nxer committed Jul 22, 2024
1 parent ae21478 commit 178c4ba
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ public CheckRecipeResult checkProcessing_EM() {
}

this.mMaxProgresstime = 256;
updateSlots();
return CheckRecipeResultRegistry.GENERATING;

} else if (OperatingMode > 0) {
Expand Down Expand Up @@ -328,6 +329,7 @@ public CheckRecipeResult checkProcessing_EM() {
tProduct = tRods * 28000000L;
tMaxStored = tRods * 280000000L;
this.mMaxProgresstime = 20;
updateSlots();
return CheckRecipeResultRegistry.SUCCESSFUL;
} else if (OperatingMode == 2 && tRods > 0 && tStored == 0) {
this.mOutputItems = mStored.toArray(new ItemStack[0]);
Expand All @@ -337,6 +339,7 @@ public CheckRecipeResult checkProcessing_EM() {
tProduct = 0;
tMaxStored = 0;
this.mMaxProgresstime = 20;
updateSlots();
return CheckRecipeResultRegistry.SUCCESSFUL;
}
}
Expand Down

0 comments on commit 178c4ba

Please sign in to comment.