fix some things about IHeatable
This commit is contained in:
parent
d844eafad2
commit
cf73781356
2 changed files with 2 additions and 2 deletions
|
@ -183,7 +183,7 @@ public class TileEngineIron extends TileEngineWithInventory implements IFluidHan
|
|||
}
|
||||
|
||||
@Override
|
||||
public void updateHeatLevel() {
|
||||
public void updateHeat() {
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue