Browse Source

Fix same bug in subsection

j433866 6 years ago
parent
commit
d923c99975
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/operations/Subsection.mjs

+ 1 - 1
src/core/operations/Subsection.mjs

@@ -116,7 +116,7 @@ class Subsection extends Operation {
                 }
 
                 // Baseline ing values for each tranche so that registers are reset
-                subOpList.forEach((op, i) => {
+                recipe.opList.forEach((op, i) => {
                     op.ingValues = JSON.parse(JSON.stringify(ingValues[i]));
                 });