We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab32ca commit 97405abCopy full SHA for 97405ab
src/main/java/gregtech/common/mui/widget/GTFluidSlot.java
@@ -59,6 +59,9 @@ public GTFluidSlot() {
59
if (this.syncHandler.showAmount())
60
tooltip.addLine(IKey.lang("gregtech.fluid.amount", fluid.amount, this.syncHandler.getCapacity()));
61
62
+ if (this.syncHandler.isPhantom() && this.syncHandler.showAmount())
63
+ tooltip.addLine(IKey.lang("modularui.fluid.phantom.control"));
64
+
65
// Add various tooltips from the material
66
for (String s : FluidTooltipUtil.getFluidTooltip(fluid)) {
67
if (s.isEmpty()) continue;
0 commit comments