Skip to content

Commit

Permalink
fix: EBF always max perfect overclock. (#624)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arborsm authored Dec 16, 2023
1 parent 120756f commit ff71fca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public static GTRecipe ebfOverclock(MetaMachine machine, @Nonnull GTRecipe recip
duration,
amountOC,
blastFurnaceTemperature,
recipe.data.contains("ebf_temp") ? 0 : recipe.data.getInt("ebf_temp")
recipe.data.contains("ebf_temp") ? recipe.data.getInt("ebf_temp") : 0
)), recipe, coilMachine.getMaxVoltage());
}
return null;
Expand Down

0 comments on commit ff71fca

Please sign in to comment.