aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/common
diff options
context:
space:
mode:
authorbombcar <github@bombcar.com>2023-12-08 17:45:42 -0600
committerGitHub <noreply@github.com>2023-12-09 00:45:42 +0100
commitc2b50ac86fd775ecd4375de8cc0ed35b73836866 (patch)
treefd489d3c99811149840832afcd0baa2189969353 /src/main/java/gtPlusPlus/xmod/gregtech/common
parentf76e3dd5e604fba45dfbdef153e6c331ad0a526d (diff)
downloadGT5-Unofficial-c2b50ac86fd775ecd4375de8cc0ed35b73836866.tar.gz
GT5-Unofficial-c2b50ac86fd775ecd4375de8cc0ed35b73836866.tar.bz2
GT5-Unofficial-c2b50ac86fd775ecd4375de8cc0ed35b73836866.zip
Normalize semifluid gens to match the other fuel gens (#795)
* remove mavenlocal * update dependencies * normalize semifluid gens
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java
index 6eda447410..16aa8a977f 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/generators/GT_MetaTileEntity_SemiFluidGenerator.java
@@ -46,7 +46,7 @@ public class GT_MetaTileEntity_SemiFluidGenerator extends GT_MetaTileEntity_Basi
@Override
public int getCapacity() {
- return 4000 * this.mTier;
+ return 16000;
}
public void onConfigLoad() {