Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Commit

Permalink
revert the accidentally refactor in Plasma turbine
Browse files Browse the repository at this point in the history
  • Loading branch information
koiNoCirculation committed Feb 27, 2024
1 parent 31308c2 commit 627f140
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ protected boolean filtersFluid() {
fuelValue = getFuelValue(new FluidStack(tFluids.get(0), 0));
}
float magicValue = (fuelValue * 0.005f) * (fuelValue * 0.005f);
long efficiencyLoss = (long) Math.min(1.0f, magicValue / euPerTurbine);
float efficiencyLoss = Math.min(1.0f, magicValue / euPerTurbine);
newPower *= efficiencyLoss;

long difference = newPower - this.lEUt; // difference between current output and new output
Expand Down

0 comments on commit 627f140

Please sign in to comment.