diff options
author | NotAPenguin <michiel.vandeginste@gmail.com> | 2024-05-27 18:22:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-27 18:22:03 +0200 |
commit | 34d202cc3adf8b1171957f9a2a4b179084f503c2 (patch) | |
tree | 8d2b3b4a557e8c019603eabf0102d89e09209b45 | |
parent | f12086b2eb3cfd53b8e6af5fd5d25475e7b482c7 (diff) | |
download | GT5-Unofficial-34d202cc3adf8b1171957f9a2a4b179084f503c2.tar.gz GT5-Unofficial-34d202cc3adf8b1171957f9a2a4b179084f503c2.tar.bz2 GT5-Unofficial-34d202cc3adf8b1171957f9a2a4b179084f503c2.zip |
Fix AAL not loading parallel count from NBT correctly (#2627)
-rw-r--r-- | src/main/java/net/glease/ggfab/mte/MTE_AdvAssLine.java | 3 |
1 files changed, 1 insertions, 2 deletions
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) { |