Skip to content
This repository has been archived by the owner on Dec 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #33 from GTNewHorizons/deprecation
Browse files Browse the repository at this point in the history
Add deprecation tooltip to rocket fuels
  • Loading branch information
Dream-Master authored Sep 3, 2022
2 parents b137076 + e613796 commit 1be3f27
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
import com.github.bartimaeusnek.bartworks.util.Pair;
import net.minecraft.util.EnumChatFormatting;

/*
*
Expand All @@ -16,6 +17,9 @@
@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",
Expand Down Expand Up @@ -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(),
Expand Down Expand Up @@ -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(),
Expand All @@ -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(),
Expand Down

0 comments on commit 1be3f27

Please sign in to comment.