fixed mark3 fusion overclock
This commit is contained in:
parent
df1ffb0211
commit
d2e2d83156
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ public abstract class GT_MetaTileEntity_FusionComputer extends GT_MetaTileEntity
|
|||
if (tierOverclock() == 2) {
|
||||
return mStartEnergy < 160000000 ? 2 : 1;
|
||||
}
|
||||
return mStartEnergy < 160000000 ? 4 : mStartEnergy > 320000000 ? 2 : 1;
|
||||
return mStartEnergy < 160000000 ? 4 : mStartEnergy < 320000000 ? 2 : 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue