From 6d4c465858fe1a199628de86edff1152f97faa52 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sun, 15 May 2016 11:33:32 +1000 Subject: First steps towards the Industrial Coking Oven, plus some other misc fixes. SteamCondenser doesn't show it's tickTime in GUI anymore. Added compat for some IC2 cables and TC/FB shards. Added compat for CompactWindmills. Implemented compat handler for OreDicting/Recipe handling --- src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/miscutil/gregtech/api/gui') diff --git a/src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java b/src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java index 6a6e01c243..2227302bb5 100644 --- a/src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java +++ b/src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java @@ -18,7 +18,7 @@ public class GUI_SteamCondenser extends GT_GUIContainerMetaTile_Machine protected void drawGuiContainerForegroundLayer(int par1, int par2) { this.fontRendererObj.drawString("Condenser", 8, 4, 4210752); - if (!CORE.DEBUG){ + if (CORE.DEBUG){ tickTime = ((CONTAINER_SteamCondenser)this.mContainer).mTickingTime; this.fontRendererObj.drawString("Tick Time: "+tickTime, 8, 12, 4210752); } -- cgit