Improve the FluidNetwork's reporting of stored/flowing fluid a bit
This commit is contained in:
parent
79e8b36a4b
commit
ab6da7571d
1 changed files with 1 additions and 1 deletions
|
@ -359,6 +359,6 @@ public class FluidNetwork extends DynamicNetwork<IFluidHandler, FluidNetwork>
|
|||
@Override
|
||||
public String getFlow()
|
||||
{
|
||||
return fluidStored + " mB";
|
||||
return fluidStored == null ? "None" : fluidStored.getFluid().getLocalizedName() + ", " + fluidStored.amount + "mB/tick";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue