We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f6ef3d commit f73b285Copy full SHA for f73b285
src/main/java/gregtech/api/capability/impl/AbstractRecipeLogic.java
@@ -1123,7 +1123,7 @@ public boolean isAllowOverclocking() {
1123
public void setMaximumOverclockVoltage(final long overclockVoltage) {
1124
this.overclockVoltage = overclockVoltage;
1125
// Overclocking is not allowed if the passed voltage is <= LV
1126
- this.allowOverclocking = (overclockVoltage <= GTValues.V[GTValues.LV]);
+ this.allowOverclocking = (overclockVoltage > GTValues.V[GTValues.LV]);
1127
}
1128
1129
/**
0 commit comments