Skip to content

Commit

Permalink
Merge pull request #833 from viliml/patch-1
Browse files Browse the repository at this point in the history
Lower engine heat 10 times
  • Loading branch information
Flow86 committed May 7, 2013
2 parents 1bc52bc + 25c5439 commit 655a31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/buildcraft/energy/gui/GuiEngine.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void draw(int x, int y) {
fontRenderer.drawStringWithShadow(StringUtil.localize("gui.stored") + ":", x + 22, y + 44, subheaderColour);
fontRenderer.drawString(engine.getEnergyStored() + " MJ", x + 22, y + 56, textColour);
fontRenderer.drawStringWithShadow(StringUtil.localize("gui.heat") + ":", x + 22, y + 68, subheaderColour);
fontRenderer.drawString(((double) engine.getHeat() / (double) 10) + " \u00B0C", x + 22, y + 80, textColour);
fontRenderer.drawString(((double) engine.getHeat() / (double) 100 + 20.0) + " \u00B0C", x + 22, y + 80, textColour);

}

Expand Down

0 comments on commit 655a31e

Please sign in to comment.