diff options
author | Mary <33456283+FourIsTheNumber@users.noreply.github.com> | 2024-09-08 10:16:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-08 14:16:50 +0000 |
commit | daaebf5e39946a2197c750acb8cd345fe48d2e0b (patch) | |
tree | c1e075bb0716f9b2e952a34945582163cd86d445 /src/main/java/gregtech | |
parent | 6fad9cefc8f0be209966b4c3cef1f70208f09a92 (diff) | |
download | GT5-Unofficial-daaebf5e39946a2197c750acb8cd345fe48d2e0b.tar.gz GT5-Unofficial-daaebf5e39946a2197c750acb8cd345fe48d2e0b.tar.bz2 GT5-Unofficial-daaebf5e39946a2197c750acb8cd345fe48d2e0b.zip |
Fix Black Hole amperage (#3114)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java b/src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java index 367b529bc3..029f839c8f 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java @@ -422,12 +422,6 @@ public class MTEBlackHoleCompressor extends MTEExtendedPowerMultiBlockBase<MTEBl } @Override - protected void setProcessingLogicPower(ProcessingLogic logic) { - logic.setAvailableVoltage(GTUtility.roundUpVoltage(this.getMaxInputVoltage())); - logic.setAvailableAmperage(1L); - } - - @Override public void getWailaNBTData(EntityPlayerMP player, TileEntity tile, NBTTagCompound tag, World world, int x, int y, int z) { super.getWailaNBTData(player, tile, tag, world, x, y, z); |