diff options
| author | Technus <daniel112092@gmail.com> | 2017-08-14 19:36:24 +0200 |
|---|---|---|
| committer | Technus <daniel112092@gmail.com> | 2017-08-14 19:36:56 +0200 |
| commit | 5843d5217edd924bec71c191561af74a84e580f7 (patch) | |
| tree | 43e4790a754c12e603f6c6beb4a77ff6606eb157 /src/main/java | |
| parent | 996907e8f0feb1e97f3556a84bb9feb53c9eb3ab (diff) | |
| download | GT5-Unofficial-5843d5217edd924bec71c191561af74a84e580f7.tar.gz GT5-Unofficial-5843d5217edd924bec71c191561af74a84e580f7.tar.bz2 GT5-Unofficial-5843d5217edd924bec71c191561af74a84e580f7.zip | |
Remove issues with text
Diffstat (limited to 'src/main/java')
3 files changed, 3 insertions, 3 deletions
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 |
