[RELEASE] 1.8.0 BETA1-Release ready. Only a few changes are needed and a lot of imports batch changed. No new branch, just 5 lines of code for every release!

This commit is contained in:
0xSeb
2015-11-25 23:42:21 +01:00
parent dc54ca0a01
commit 04a67f6a76
3 changed files with 10 additions and 9 deletions
@@ -180,7 +180,12 @@ public class GuiConfig extends GuiScreen {
drawKeyValues();
} else {
Logger.info("keyTyped(c,i)", "Trying to close inventory with esc.");
super.keyTyped(character, keyCode); // Enable standard gui closing
try {
super.keyTyped(character, keyCode); // Enable standard gui closing
} catch (Exception ignored) {
// support for newer versions, just do nothing
}
}
} else if (selectedButtonID != -1) {
@@ -193,8 +198,6 @@ public class GuiConfig extends GuiScreen {
}
// TODO: Crafting symbols & labels
private void drawCraftingTable() {
GL11.glColor4f(1F, 1F, 1F, 1F);
mc.renderEngine.bindTexture(new ResourceLocation("textures/gui/container/crafting_table.png"));
@@ -243,7 +246,7 @@ public class GuiConfig extends GuiScreen {
drawTexturedModalRect(guiShowBasePosX + 105, guiShowBasePosY + 17, 150, 50, 50, 50);
drawInfoString(1, 32, 51);
// TODO: 1.8 Enchantment Table
// 1.8 drawInfoString(2, 42, 51);
}