From 34d202cc3adf8b1171957f9a2a4b179084f503c2 Mon Sep 17 00:00:00 2001 From: NotAPenguin Date: Mon, 27 May 2024 18:22:03 +0200 Subject: Fix AAL not loading parallel count from NBT correctly (#2627) --- src/main/java/net/glease/ggfab/mte/MTE_AdvAssLine.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/net/glease/ggfab/mte/MTE_AdvAssLine.java b/src/main/java/net/glease/ggfab/mte/MTE_AdvAssLine.java index be0446c8ad..3bc891e572 100644 --- a/src/main/java/net/glease/ggfab/mte/MTE_AdvAssLine.java +++ b/src/main/java/net/glease/ggfab/mte/MTE_AdvAssLine.java @@ -378,14 +378,13 @@ public class MTE_AdvAssLine extends GT_MetaTileEntity_ExtendedPowerMultiBlockBas currentRecipe = recipe; currentStick = stick; currentInputLength = recipe.mInputs.length; - // Reset parallel, we need to re-check on next recipe check to see if there are enough items in the first slice - currentRecipeParallel = 1; } private void clearCurrentRecipe() { currentRecipe = null; currentStick = null; currentInputLength = -1; + currentRecipeParallel = 1; stuck = false; baseEUt = 0; for (Slice slice : slices) { -- cgit