diff options
| author | Martin Robertz <dream-master@gmx.net> | 2022-12-22 17:03:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-22 17:03:51 +0100 |
| commit | 8ff11ef5b0a93524919b117aa0e88bad767cc1de (patch) | |
| tree | f12d703dfb1ca39ca0a3b76e73e9ad19713fbf0f /src/main/java/goodgenerator/blocks | |
| parent | f4ed70933bb3130b528cde22e166f64f5eaa4c8d (diff) | |
| download | GT5-Unofficial-8ff11ef5b0a93524919b117aa0e88bad767cc1de.tar.gz GT5-Unofficial-8ff11ef5b0a93524919b117aa0e88bad767cc1de.tar.bz2 GT5-Unofficial-8ff11ef5b0a93524919b117aa0e88bad767cc1de.zip | |
Co al fixes (#119)
* fixed broken recipe adder,
increased power usage in pre-LuV components
* fixed circuit compacting and PTMEG plates
* fix circuit type
* Update dependencies
* Fix recipe conflict with LuV and IV Field Generator
* Don't use programmed circuit number 0
* Use GT_Values.VP[tier - 1] for assembler recipes
Co-authored-by: MadMan310 <madman3017@gmail.com>
Co-authored-by: miozune <miozune@gmail.com>
Diffstat (limited to 'src/main/java/goodgenerator/blocks')
| -rw-r--r-- | src/main/java/goodgenerator/blocks/tileEntity/base/GT_MetaTileEntity_LongPowerUsageBase.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/base/GT_MetaTileEntity_LongPowerUsageBase.java b/src/main/java/goodgenerator/blocks/tileEntity/base/GT_MetaTileEntity_LongPowerUsageBase.java index 79020d406a..5494cdd89a 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/base/GT_MetaTileEntity_LongPowerUsageBase.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/base/GT_MetaTileEntity_LongPowerUsageBase.java @@ -68,7 +68,8 @@ public abstract class GT_MetaTileEntity_LongPowerUsageBase<T extends GT_MetaTile return rEnergy; } - protected long getMaxInputAmps() { + @Override + public long getMaxInputAmps() { long rAmps = 0; for (GT_MetaTileEntity_Hatch_Energy tHatch : mEnergyHatches) { if (GT_MetaTileEntity_MultiBlockBase.isValidMetaTileEntity(tHatch)) { |
