aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tileentities/machines
diff options
context:
space:
mode:
authorStaffiX <32968022+StaffiX@users.noreply.github.com>2024-11-23 04:28:54 +0100
committerGitHub <noreply@github.com>2024-11-22 21:28:54 -0600
commite69032e4cddc7ff4dd71a85d3564013ac5abbe41 (patch)
tree9a154f4b1ba9661987b38d468b24984969e9c45d /src/main/java/gregtech/common/tileentities/machines
parent290fcef6d63c926452546ecb36b585fa325f15a6 (diff)
downloadGT5-Unofficial-e69032e4cddc7ff4dd71a85d3564013ac5abbe41.tar.gz
GT5-Unofficial-e69032e4cddc7ff4dd71a85d3564013ac5abbe41.tar.bz2
GT5-Unofficial-e69032e4cddc7ff4dd71a85d3564013ac5abbe41.zip
Deprecate the Advanced Large Gas turbine (#3537)
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines')
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGas.java2
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGasAdvanced.java2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGas.java b/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGas.java
index a125b5bf33..4285d1e7c3 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGas.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGas.java
@@ -57,8 +57,6 @@ public class MTELargeTurbineGas extends MTELargeTurbine {
final MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder();
tt.addMachineType("Gas Turbine")
.addInfo("Needs a Turbine, place inside controller")
- .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))
.beginStructureBlock(3, 3, 4, true)
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGasAdvanced.java b/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGasAdvanced.java
index b17c8b325a..3af7dd37dd 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGasAdvanced.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbineGasAdvanced.java
@@ -57,7 +57,7 @@ public class MTELargeTurbineGasAdvanced extends MTELargeTurbine {
protected MultiblockTooltipBuilder createTooltip() {
final MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder();
tt.addMachineType("Gas Turbine")
- .addInfo(EnumChatFormatting.DARK_RED + "Warning: This is an experimental multiblock, subject to changes ")
+ .addInfo(EnumChatFormatting.RED + "DEPRECATED! This machine will be removed in the next major update.")
.addInfo("Needs a Turbine, place inside controller")
.addInfo("Only accepts gases above 800k EU/bucket")
.addInfo("Has no maximum EU/t output, only depends on the Dynamo Hatch")