Skip to content

Commit 195d75e

Browse files
ghzdudeserenibyss
authored andcommitted
Fix Large Gas Turbine not displaying Max Voltage when fully spun up (#2283)
1 parent 471ef1f commit 195d75e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/gregtech/common/metatileentities/multi/electric/generator/MetaTileEntityLargeTurbine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ protected void formStructure(PatternMatchContext context) {
106106
protected long getMaxVoltage() {
107107
long maxProduction = recipeMapWorkable.getMaxVoltage();
108108
long currentProduction = ((LargeTurbineWorkableHandler) recipeMapWorkable).boostProduction((int) maxProduction);
109-
if (isActive() && currentProduction < maxProduction) {
109+
if (isActive() && currentProduction <= maxProduction) {
110110
return recipeMapWorkable.getMaxVoltage();
111111
} else {
112112
return 0L;

0 commit comments

Comments
 (0)