diff --git a/src/main/java/gregtech/common/mui/widget/GTFluidSlot.java b/src/main/java/gregtech/common/mui/widget/GTFluidSlot.java index 2008a38a653..340af7c1fb7 100644 --- a/src/main/java/gregtech/common/mui/widget/GTFluidSlot.java +++ b/src/main/java/gregtech/common/mui/widget/GTFluidSlot.java @@ -59,6 +59,9 @@ public GTFluidSlot() { if (this.syncHandler.showAmount()) tooltip.addLine(IKey.lang("gregtech.fluid.amount", fluid.amount, this.syncHandler.getCapacity())); + if (this.syncHandler.isPhantom() && this.syncHandler.showAmount()) + tooltip.addLine(IKey.lang("modularui.fluid.phantom.control")); + // Add various tooltips from the material for (String s : FluidTooltipUtil.getFluidTooltip(fluid)) { if (s.isEmpty()) continue;