aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2021-11-11 17:56:43 +0100
committerGitHub <noreply@github.com>2021-11-11 17:56:43 +0100
commit520699304c590a6cc98f52afb3695697410fcf8a (patch)
tree24434a0ca33c992e3d95ce89803d13f6cad156d0 /src/main/java/gregtech/common
parent9a9d4260710a97a98de51772fea5da21d9933945 (diff)
parent4b928096c6a1f305eb49fdb48a212b8f4eb13252 (diff)
downloadGT5-Unofficial-520699304c590a6cc98f52afb3695697410fcf8a.tar.gz
GT5-Unofficial-520699304c590a6cc98f52afb3695697410fcf8a.tar.bz2
GT5-Unofficial-520699304c590a6cc98f52afb3695697410fcf8a.zip
Merge pull request #723 from GTNewHorizons/better-color
color change
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r--src/main/java/gregtech/common/items/GT_FluidDisplayItem.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/items/GT_FluidDisplayItem.java b/src/main/java/gregtech/common/items/GT_FluidDisplayItem.java
index ad4e1f6bdd..43186b9621 100644
--- a/src/main/java/gregtech/common/items/GT_FluidDisplayItem.java
+++ b/src/main/java/gregtech/common/items/GT_FluidDisplayItem.java
@@ -40,7 +40,7 @@ public class GT_FluidDisplayItem extends GT_Generic_Item {
protected void addAdditionalToolTips(List aList, ItemStack aStack, EntityPlayer aPlayer) {
if (FluidRegistry.getFluid(aStack.getItemDamage()) != null) {
String tChemicalFormula = getChemicalFormula(new FluidStack(FluidRegistry.getFluid(aStack.getItemDamage()), 1));
- if (!tChemicalFormula.isEmpty()) aList.add(EnumChatFormatting.GRAY + tChemicalFormula + EnumChatFormatting.GRAY);
+ if (!tChemicalFormula.isEmpty()) aList.add(EnumChatFormatting.YELLOW + tChemicalFormula + EnumChatFormatting.RESET);
}
NBTTagCompound aNBT = aStack.getTagCompound();
if (GT_Values.D1) {