File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -645,10 +645,10 @@ unsigned long calcStrikeVol(byte recipe) {
645
645
646
646
unsigned long calcTotalLiquorVol (byte recipe) {
647
647
unsigned long retValue = calcPreboilVol (recipe);
648
-
648
+
649
649
// Add Water Lost in Spent Grain
650
650
retValue += calcGrainLoss (recipe);
651
-
651
+
652
652
// Add extra sparge volume needed for loss during transfer of sprage liquor
653
653
retValue += getSpargeLoss ();
654
654
@@ -657,11 +657,12 @@ unsigned long calcTotalLiquorVol(byte recipe) {
657
657
658
658
// Add extra volume needed for loss during transfer from mash to boil
659
659
retValue += getMashLoss ();
660
+ return retValue;
660
661
}
661
662
662
663
unsigned long calcSpargeVol (byte recipe) {
663
664
unsigned long retValue = calcTotalLiquorVol (recipe);
664
-
665
+
665
666
// Subtract Strike Water Volume
666
667
retValue -= calcStrikeVol (recipe);
667
668
You can’t perform that action at this time.
0 commit comments