aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/gui
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-06-17 16:55:21 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-06-17 16:55:21 +1000
commit92b359cbee7aeca68bf4fa2a1c9530e777f6ed11 (patch)
tree9a8b43617b2bbfb71b96ff240491d83ace1b5b0b /src/Java/miscutil/core/gui
parentb96d8f61d1550d61f432290431ebf8a96da252f2 (diff)
downloadGT5-Unofficial-92b359cbee7aeca68bf4fa2a1c9530e777f6ed11.tar.gz
GT5-Unofficial-92b359cbee7aeca68bf4fa2a1c9530e777f6ed11.tar.bz2
GT5-Unofficial-92b359cbee7aeca68bf4fa2a1c9530e777f6ed11.zip
~Changed the way compatability is handled.
~Recipe Handler now works in two segments, loading recipes as normal during Init and then from a queue during postInit. ~Queue should be populated throughout the mods init/preInit phases, so that they're not removed during recipe removal. ~Made more changes to the NFHG, not sure if I broke it more or not.. but it works, kinda.
Diffstat (limited to 'src/Java/miscutil/core/gui')
-rw-r--r--src/Java/miscutil/core/gui/machine/GUI_NHG.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Java/miscutil/core/gui/machine/GUI_NHG.java b/src/Java/miscutil/core/gui/machine/GUI_NHG.java
index 632e9e29ac..b536157a49 100644
--- a/src/Java/miscutil/core/gui/machine/GUI_NHG.java
+++ b/src/Java/miscutil/core/gui/machine/GUI_NHG.java
@@ -45,5 +45,6 @@ public class GUI_NHG extends GuiContainer
fontRendererObj.drawString(I18n.format(te.getInventoryName()), (xSize / 2) - (fontRendererObj.getStringWidth(I18n.format(te.getInventoryName())) / 2), 6, 4210752, false);
//fontRendererObj.drawString(I18n.format(inventory.getInventoryName()), 8, ySize - 96 + 2, 4210752);
fontRendererObj.drawString(I18n.format("CoreTemp:"+te.getCoreTemp()+"K"), 8, ySize - 96 + 2, 4210752);
+ fontRendererObj.drawString(I18n.format("Progress:"+te.getProgress()+"ticks"), 80, ySize - 96 + 2, 4210752);
}
} \ No newline at end of file