aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/covers
diff options
context:
space:
mode:
authorkstvr32 <109012629+kstvr32@users.noreply.github.com>2024-09-10 08:02:10 -0400
committerGitHub <noreply@github.com>2024-09-10 12:02:10 +0000
commit07a668f7cc77770360b8184ad3964c60722ea936 (patch)
tree66a4d833480109432073ed6fd3209088c5ca91e7 /src/main/java/gregtech/common/covers
parent900f72d66570ce248338513d540692e5c930ef8e (diff)
downloadGT5-Unofficial-07a668f7cc77770360b8184ad3964c60722ea936.tar.gz
GT5-Unofficial-07a668f7cc77770360b8184ad3964c60722ea936.tar.bz2
GT5-Unofficial-07a668f7cc77770360b8184ad3964c60722ea936.zip
Add higher tiered fluid regulators (#3061)
Co-authored-by: kstvr32 <kstvr32@gmail.com> Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech/common/covers')
-rw-r--r--src/main/java/gregtech/common/covers/CoverFluidRegulator.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/covers/CoverFluidRegulator.java b/src/main/java/gregtech/common/covers/CoverFluidRegulator.java
index a41ed08320..1895df509d 100644
--- a/src/main/java/gregtech/common/covers/CoverFluidRegulator.java
+++ b/src/main/java/gregtech/common/covers/CoverFluidRegulator.java
@@ -62,8 +62,6 @@ public class CoverFluidRegulator extends CoverBehaviorBase<CoverFluidRegulator.F
public CoverFluidRegulator(int aTransferRate, ITexture coverTexture) {
super(FluidRegulatorData.class, coverTexture);
- if (aTransferRate > (-1 >>> (Integer.SIZE - SPEED_LENGTH)))
- throw new IllegalArgumentException("aTransferRate too big: " + aTransferRate);
this.mTransferRate = aTransferRate;
}