diff options
Diffstat (limited to 'src/main/java/goodgenerator/blocks/tileEntity/base')
| -rw-r--r-- | src/main/java/goodgenerator/blocks/tileEntity/base/LargeFusionComputerPP.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/base/LargeFusionComputerPP.java b/src/main/java/goodgenerator/blocks/tileEntity/base/LargeFusionComputerPP.java index 1225fda96f..9583d30198 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/base/LargeFusionComputerPP.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/base/LargeFusionComputerPP.java @@ -1,8 +1,5 @@ package goodgenerator.blocks.tileEntity.base; -import static com.gtnewhorizon.structurelib.structure.StructureUtility.*; -import static gregtech.api.enums.Textures.BlockIcons.*; - import gregtech.api.logic.ProcessingLogic; public abstract class LargeFusionComputerPP extends LargeFusionComputer { @@ -19,4 +16,11 @@ public abstract class LargeFusionComputerPP extends LargeFusionComputer { protected ProcessingLogic createProcessingLogic() { return super.createProcessingLogic().setOverclock(2, 2); } + + @Override + protected long getSingleHatchPower() { + // Multiply by 8 so that we can have the original input power per hatch + return super.getSingleHatchPower() * 8; + } + } |
