Skip to content

Commit 6882880

Browse files
committed
fix capacity lasers
1 parent 03b3a8a commit 6882880

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/impact/mods/gregtech/tileentities/hatches/lasers/GTMTE_LaserEnergy_In.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public long maxEUInput() {
6060

6161
@Override
6262
public long maxEUStore() {
63-
return 512L + V[this.mTier] * 4L * (long) this.Amp;
63+
return V[this.mTier] * 24L * (long) this.Amp;
6464
}
6565

6666
@Override

src/main/java/com/impact/mods/gregtech/tileentities/hatches/lasers/GTMTE_LaserEnergy_Out.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public long maxEUOutput() {
6464
}
6565

6666
public long maxEUStore() {
67-
return 512L + V[this.mTier] * 4L * (long) this.Amp;
67+
return V[this.mTier] * 24L * (long) this.Amp;
6868
}
6969

7070
public long maxAmperesOut() {

0 commit comments

Comments
 (0)