diff options
author | miozune <miozune@gmail.com> | 2022-09-03 20:14:34 +0900 |
---|---|---|
committer | miozune <miozune@gmail.com> | 2022-09-03 20:14:34 +0900 |
commit | e61379610890c71ccebeee650094c9e1d78c3558 (patch) | |
tree | 9ea9716c4a94fbaedccb344e4332204ccfe36ee5 /src/main/java | |
parent | b1370760a5f54d1ccc5e7eb36f8a349b99e0e8c5 (diff) | |
download | GT5-Unofficial-e61379610890c71ccebeee650094c9e1d78c3558.tar.gz GT5-Unofficial-e61379610890c71ccebeee650094c9e1d78c3558.tar.bz2 GT5-Unofficial-e61379610890c71ccebeee650094c9e1d78c3558.zip |
Add deprecation tooltip to rocket fuels
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java | 7 |
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(), |