From 863f0184fc60d10a8f229a6766d45c280dc548da Mon Sep 17 00:00:00 2001 From: tcooc Date: Sat, 15 Sep 2012 13:20:14 -0500 Subject: [PATCH] Fix #267 --- common/buildcraft/core/gui/GuiAdvancedInterface.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/common/buildcraft/core/gui/GuiAdvancedInterface.java b/common/buildcraft/core/gui/GuiAdvancedInterface.java index 25cbb36d..20ce187a 100644 --- a/common/buildcraft/core/gui/GuiAdvancedInterface.java +++ b/common/buildcraft/core/gui/GuiAdvancedInterface.java @@ -46,8 +46,6 @@ public abstract class GuiAdvancedInterface extends GuiBuildCraft { if (!isDefined()) return; - GL11.glDisable(GL11.GL_LIGHTING); - if (getItemStack() != null) drawStack(getItemStack()); else if (getTexture() != null && !getTexture().equals("")) { @@ -60,7 +58,6 @@ public abstract class GuiAdvancedInterface extends GuiBuildCraft { drawTexturedModalRect(cornerX + x, cornerY + y, 16 * textureJ, 16 * textureI, 16, 16); } - GL11.glEnable(GL11.GL_LIGHTING); } public void drawStack(ItemStack item) {