From 5843d5217edd924bec71c191561af74a84e580f7 Mon Sep 17 00:00:00 2001 From: Technus Date: Mon, 14 Aug 2017 19:36:24 +0200 Subject: Remove issues with text --- .../thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Uncertainty.java | 2 +- .../thing/metaTileEntity/hatch/gui/GT_GUIContainer_Uncertainty.java | 2 +- .../thing/metaTileEntity/hatch/gui/GT_GUIContainer_UncertaintyAdv.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/com') diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Uncertainty.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Uncertainty.java index a8f18d87a6..11c9ceced8 100644 --- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Uncertainty.java +++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Uncertainty.java @@ -55,7 +55,7 @@ public class GT_MetaTileEntity_Hatch_Uncertainty extends GT_MetaTileEntity_Hatch @Override public Object getClientGUI(int aID, InventoryPlayer aPlayerInventory, IGregTechTileEntity aBaseMetaTileEntity) { - if (mTier > 6) return new GT_GUIContainer_UncertaintyAdv(aPlayerInventory, aBaseMetaTileEntity); + if (mTier >= 10) return new GT_GUIContainer_UncertaintyAdv(aPlayerInventory, aBaseMetaTileEntity); return new GT_GUIContainer_Uncertainty(aPlayerInventory, aBaseMetaTileEntity); } diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/gui/GT_GUIContainer_Uncertainty.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/gui/GT_GUIContainer_Uncertainty.java index 8ce77067ca..19826984c3 100644 --- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/gui/GT_GUIContainer_Uncertainty.java +++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/gui/GT_GUIContainer_Uncertainty.java @@ -15,7 +15,7 @@ public class GT_GUIContainer_Uncertainty extends GT_GUIContainerMetaTile_Machine } protected void drawGuiContainerForegroundLayer(int par1, int par2) { - proxy.renderUnicodeString("Schrödinger", 46, 7, 167, 0xffffff); + proxy.renderUnicodeString("Schr\u00F6dinger", 46, 7, 167, 0xffffff); if (this.mContainer != null && ((GT_Container_Uncertainty) this.mContainer).status == 0) proxy.renderUnicodeString("Status: OK", 46, 16, 167, 0xffffff); else diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/gui/GT_GUIContainer_UncertaintyAdv.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/gui/GT_GUIContainer_UncertaintyAdv.java index 0c2daaab2e..eebf48debb 100644 --- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/gui/GT_GUIContainer_UncertaintyAdv.java +++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/gui/GT_GUIContainer_UncertaintyAdv.java @@ -17,7 +17,7 @@ public final class GT_GUIContainer_UncertaintyAdv extends GT_GUIContainerMetaTil } protected void drawGuiContainerForegroundLayer(int par1, int par2) { - proxy.renderUnicodeString("Schrödinger X", 46, 7, 167, 0xffffff); + proxy.renderUnicodeString("Schr\u00F6dinger X", 46, 7, 167, 0xffffff); if (this.mContainer != null && ((GT_Container_Uncertainty) this.mContainer).status == 0) proxy.renderUnicodeString("Status: OK", 46, 16, 167, 0xffffff); else -- cgit