diff options
author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-08-06 12:06:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-06 13:06:46 +0200 |
commit | 25b5cc41e81bdf4b76f032be96e81eecf6ce1df1 (patch) | |
tree | 96b92bad319d9b1ce40ab45b7fd6efafeed3b681 /src | |
parent | dfab64d14f6ec29a1582c9959852523b0f15f5ad (diff) | |
download | GT5-Unofficial-25b5cc41e81bdf4b76f032be96e81eecf6ce1df1.tar.gz GT5-Unofficial-25b5cc41e81bdf4b76f032be96e81eecf6ce1df1.tar.bz2 GT5-Unofficial-25b5cc41e81bdf4b76f032be96e81eecf6ce1df1.zip |
LGT Final Changes for Next Stable (#1216)
Diffstat (limited to 'src')
2 files changed, 7 insertions, 5 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_Gas.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_Gas.java index 8cfa07fb2b..c16b7851fa 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_Gas.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_Gas.java @@ -42,8 +42,9 @@ public class GT_MetaTileEntity_LargeTurbine_Gas extends GT_MetaTileEntity_LargeT tt.addMachineType("Gas Turbine") .addInfo("Controller block for the Large Gas Turbine") .addInfo("Needs a Turbine, place inside controller") - .addInfo("Can only produce up to 8192 EU/t, regardless of Dynamo Hatch") - .addInfo("The excess fuel that gets consumed will be voided!") + .addInfo("Warning: Will be capped at 8192 EU/t in a future update") + .addInfo("See the Advanced Large Gas Turbine as the next, uncapped, option") + //.addInfo("The excess fuel that gets consumed will be voided!") .addPollutionAmount(getPollutionPerSecond(null)) .addSeparator() .beginStructureBlock(3, 3, 4, true) @@ -143,10 +144,10 @@ public class GT_MetaTileEntity_LargeTurbine_Gas extends GT_MetaTileEntity_LargeT tEU = GT_Utility.safeInt((long) tEU * (long) aBaseEff / 10000L); } - // EU/t output cap to properly tier the LGT against the Advanced LGT - if (tEU > 8192) { + // EU/t output cap to properly tier the LGT against the Advanced LGT, will be implemented in a future dev update + /*if (tEU > 8192) { tEU = 8192; - } + }*/ // If next output is above the maximum the dynamo can handle, set it to the maximum instead of exploding the turbine // Raising the maximum allowed flow rate to account for the efficiency changes beyond the optimal flow diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_GasAdvanced.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_GasAdvanced.java index f32fd30dcf..244055ac61 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_GasAdvanced.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_GasAdvanced.java @@ -40,6 +40,7 @@ public class GT_MetaTileEntity_LargeTurbine_GasAdvanced extends GT_MetaTileEntit protected GT_Multiblock_Tooltip_Builder createTooltip() { final GT_Multiblock_Tooltip_Builder tt = new GT_Multiblock_Tooltip_Builder(); tt.addMachineType("Gas Turbine") + .addInfo("Warning: This is an experimental multiblock, subject to changes ") .addInfo("Controller block for the Large Advanced Gas Turbine") .addInfo("Needs a Turbine, place inside controller") .addInfo("Only accepts gases above 800k EU/bucket") |