aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/items
diff options
context:
space:
mode:
authorGlodBlock <1356392126@qq.com>2021-11-12 00:28:42 +0800
committerGlodBlock <1356392126@qq.com>2021-11-12 00:28:42 +0800
commit4b928096c6a1f305eb49fdb48a212b8f4eb13252 (patch)
tree24434a0ca33c992e3d95ce89803d13f6cad156d0 /src/main/java/gregtech/common/items
parent9a9d4260710a97a98de51772fea5da21d9933945 (diff)
downloadGT5-Unofficial-4b928096c6a1f305eb49fdb48a212b8f4eb13252.tar.gz
GT5-Unofficial-4b928096c6a1f305eb49fdb48a212b8f4eb13252.tar.bz2
GT5-Unofficial-4b928096c6a1f305eb49fdb48a212b8f4eb13252.zip
color change
Diffstat (limited to 'src/main/java/gregtech/common/items')
-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) {