Improve the FluidNetwork's reporting of stored/flowing fluid a bit

This commit is contained in:
Ben Spiers 2013-12-16 15:54:20 +00:00
parent 79e8b36a4b
commit ab6da7571d

View file

@ -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";
}
}