diff options
author | Sampsa <69092953+S4mpsa@users.noreply.github.com> | 2024-08-09 13:42:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-09 17:42:14 +0700 |
commit | f10b885ccce496c60651d3acdf80e5036c0ef354 (patch) | |
tree | 2a20dc6372254c6501317e0d6bd5678ee16ad5d1 /src/main/java/gtPlusPlus/xmod/gregtech/common | |
parent | a43f9ce926c8297125876516b69e930de4e674bc (diff) | |
download | GT5-Unofficial-f10b885ccce496c60651d3acdf80e5036c0ef354.tar.gz GT5-Unofficial-f10b885ccce496c60651d3acdf80e5036c0ef354.tar.bz2 GT5-Unofficial-f10b885ccce496c60651d3acdf80e5036c0ef354.zip |
Plasma Line buffs, EHE nerfs, Unstable Naquadah rebalance (#2842)
* Plasma Line buffs and EHE changes
* Change efficiency to 1.0 (still has +50% boost from Steam buff)
* One too many zeros
* SC Steam -> 100 EU, 100L of Normal Steam, Base efficiency to 1.2
* Rebalance Extremely Unstable Naquadah to match SpNt (Nerf turbines)
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_SCSteam.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_SCSteam.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_SCSteam.java index 7ee40757fd..6c3db51577 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_SCSteam.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_SCSteam.java @@ -81,7 +81,7 @@ public class GT_MTE_LargeTurbine_SCSteam extends GregtechMetaTileEntity_LargerTu } if (totalFlow <= 0) return 0; tEU = totalFlow; - addOutput(GT_ModHandler.getSteam(totalFlow)); + addOutput(GT_ModHandler.getSteam(totalFlow * 100)); if (totalFlow != realOptFlow) { float efficiency = 1.0f - Math.abs((totalFlow - (float) realOptFlow) / (float) realOptFlow); // if(totalFlow>aOptFlow){efficiency = 1.0f;} |