Skip to content

Commit

Permalink
Add early return for running black hole
Browse files Browse the repository at this point in the history
  • Loading branch information
FourIsTheNumber committed Jan 27, 2025
1 parent ef5c54c commit 540ca7b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,8 @@ private void searchAndDecrementCatalysts() {
// Loop through all items and look for the Activation and Deactivation Catalysts
// Deactivation resets stability to 100 and catalyzing cost to 1

if (this.maxProgresstime() != 0) return;

for (MTEHatchInputBus bus : filterValidMTEs(mInputBusses)) {
for (int i = 0; i < bus.getSizeInventory(); i++) {
ItemStack inputItem = bus.getStackInSlot(i);
Expand Down

0 comments on commit 540ca7b

Please sign in to comment.