Skip to content

Commit

Permalink
Fix SB Distillery Multiplier (#2597)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoungOnionMC authored Dec 20, 2024
1 parent 8899ada commit bcc374a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ public class GTRecipeTypes {
.EUt(Math.max(1, EUt / 4)).circuitMeta(i + 1);

int ratio = RecipeHelper.getRatioForDistillery(input, output, outputItem);
int recipeDuration = (int) (recipeBuilder.duration * OverclockingLogic.STD_DURATION_FACTOR);
int recipeDuration = (int) (recipeBuilder.duration * OverclockingLogic.STD_DURATION_FACTOR_INV);
boolean shouldDivide = ratio != 1;

boolean fluidsDivisible = RecipeHelper.isFluidStackDivisibleForDistillery(input, ratio) &&
Expand Down

0 comments on commit bcc374a

Please sign in to comment.