public GuiVat(InventoryPlayer inventory, TileVat te) {
super(te, new ContainerVat(inventory, te));
vat = te;
addToolTip(new GuiToolTip(new Rectangle(30, 12, 15, 47), "") {
@Override
protected void updateText() {
text.clear();
String heading = Lang.localize("vat.inputTank");
if(vat.inputTank.getFluid() != null) {
heading += ": " + vat.inputTank.getFluid().getFluid().getLocalizedName();
}
text.add(heading);
text.add(Fluids.toCapactityString(vat.inputTank));
}
});
addToolTip(new GuiToolTip(new Rectangle(132, 12, 15, 47), "") {
@Override
protected void updateText() {
text.clear();
String heading = Lang.localize("vat.outputTank");