fix some things about IHeatable

This commit is contained in:
Adrian Siekierka 2014-11-10 17:58:34 +01:00
parent d844eafad2
commit cf73781356
2 changed files with 2 additions and 2 deletions

View file

@ -183,7 +183,7 @@ public class TileEngineIron extends TileEngineWithInventory implements IFluidHan
}
@Override
public void updateHeatLevel() {
public void updateHeat() {
}
@Override

View file

@ -59,7 +59,7 @@ public abstract class GuiEngine extends GuiBuildCraft {
fontRendererObj.drawString(String.format("%d RF", engine.getEnergyStored()), x + 22,
y + 56, textColour);
fontRendererObj.drawStringWithShadow(StringUtils.localize("gui.heat") + ":", x + 22, y + 68, subheaderColour);
fontRendererObj.drawString(String.format("%.2f \u00B0C", engine.getHeat()), x + 22, y + 80, textColour);
fontRendererObj.drawString(String.format("%.2f \u00B0C", engine.getCurrentHeatValue()), x + 22, y + 80, textColour);
}