aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2022-09-03 13:59:07 +0200
committerGitHub <noreply@github.com>2022-09-03 13:59:07 +0200
commit1be3f27318b45f15f1311b3a6cc647a441291175 (patch)
tree9ea9716c4a94fbaedccb344e4332204ccfe36ee5
parentb1370760a5f54d1ccc5e7eb36f8a349b99e0e8c5 (diff)
parente61379610890c71ccebeee650094c9e1d78c3558 (diff)
downloadGT5-Unofficial-1be3f27318b45f15f1311b3a6cc647a441291175.tar.gz
GT5-Unofficial-1be3f27318b45f15f1311b3a6cc647a441291175.tar.bz2
GT5-Unofficial-1be3f27318b45f15f1311b3a6cc647a441291175.zip
Merge pull request #33 from GTNewHorizons/deprecation
Add deprecation tooltip to rocket fuels
-rw-r--r--src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java b/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java
index f7c2569cbb..60d76c4cd8 100644
--- a/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java
+++ b/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java
@@ -7,6 +7,7 @@ import static gregtech.api.enums.TextureSet.*;
import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
import com.github.bartimaeusnek.bartworks.util.Pair;
+import net.minecraft.util.EnumChatFormatting;
/*
*
@@ -16,6 +17,9 @@ import com.github.bartimaeusnek.bartworks.util.Pair;
@SuppressWarnings("unchecked")
public class BotWerkstoffMaterialPool implements Runnable {
+ private static final String DEPRECATED =
+ EnumChatFormatting.DARK_RED + "Deprecated; Will be removed in the next update";
+
public static final Werkstoff TungsticAcid = new Werkstoff(
new short[] {0xf5, 0xf1, 0x16},
"Tungstic Acid",
@@ -145,6 +149,7 @@ public class BotWerkstoffMaterialPool implements Runnable {
public static final Werkstoff LMP103S = new Werkstoff(
new short[] {0xbf, 0x2f, 0xc2},
"LMP-103S",
+ DEPRECATED,
new Werkstoff.Stats(),
COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
@@ -279,6 +284,7 @@ public class BotWerkstoffMaterialPool implements Runnable {
public static final Werkstoff MonomethylhydrazineFuelMix = new Werkstoff(
new short[] {0x78, 0xe3, 0xa7},
"Monomethylhydrazine Fuel Mix",
+ DEPRECATED,
new Werkstoff.Stats(),
COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
@@ -287,6 +293,7 @@ public class BotWerkstoffMaterialPool implements Runnable {
public static final Werkstoff UnsymmetricalDimethylhydrazineFuelMix = new Werkstoff(
new short[] {0xc8, 0xff, 0x00},
"Unsymmetrical Dimethylhydrazine Fuel Mix",
+ DEPRECATED,
new Werkstoff.Stats(),
COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),