Skip to content

Commit

Permalink
Fix Multiblocks not staying suspended on unform/reform (#2367)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoungOnionMC authored and screret committed Dec 27, 2024
1 parent 0b869b0 commit bd8d0f0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ public void resetRecipeLogic() {
isActive = false;
fuelTime = 0;
lastFailedMatches = null;
status = Status.IDLE;
if (status != Status.SUSPEND)
status = Status.IDLE;
ocResult.reset();
updateTickSubscription();
}
Expand Down

0 comments on commit bd8d0f0

Please sign in to comment.