aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/goodgenerator/blocks/tileEntity/base
diff options
context:
space:
mode:
authorBlueWeabo <ilia.iliev2005@gmail.com>2023-08-03 21:56:49 +0300
committerGitHub <noreply@github.com>2023-08-03 20:56:49 +0200
commit182dac2499b8528b423ff4c68e3a5b33e817b79e (patch)
treebe5488191f10a7ea23f2308d2378cfd96271fe13 /src/main/java/goodgenerator/blocks/tileEntity/base
parent5c4a3ce0960fefc05952c05d73f10c31b504da29 (diff)
downloadGT5-Unofficial-182dac2499b8528b423ff4c68e3a5b33e817b79e.tar.gz
GT5-Unofficial-182dac2499b8528b423ff4c68e3a5b33e817b79e.tar.bz2
GT5-Unofficial-182dac2499b8528b423ff4c68e3a5b33e817b79e.zip
Fix compacts mk4 and mk5 having way too many overclocks (#191)
* fix compacts mk4 and mk5 having way too many overclocks * fix wrong tier overclocks allowing mk4 to overclock mk4 recipes * fix having 1/8th the power * use super
Diffstat (limited to 'src/main/java/goodgenerator/blocks/tileEntity/base')
-rw-r--r--src/main/java/goodgenerator/blocks/tileEntity/base/LargeFusionComputerPP.java10
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;
+ }
+
}