Skip to content

Commit

Permalink
Reduce boilsize by lauter deadspace.
Browse files Browse the repository at this point in the history
  • Loading branch information
MedicMomcilo authored Oct 19, 2023
1 parent e7aeee0 commit 9a5a74c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model/Recipe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2785,7 +2785,7 @@ double Recipe::targetCollectedWortVol_l() {
}

if (equipment()) {
return boilSize_l() - equipment()->topUpKettle_l() - postMashAdditionVolume_l;
return boilSize_l() - equipment()->lauterDeadspace_l() - equipment()->topUpKettle_l() - postMashAdditionVolume_l;
} else {
return boilSize_l() - postMashAdditionVolume_l;
}
Expand Down

0 comments on commit 9a5a74c

Please sign in to comment.