From 79f9eee9c025709d17bf134ed973c6e40add1561 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 29 Nov 2016 20:36:24 +0100 Subject: [PATCH] Ditch the fog because it breaks EnderIO side config Closes #420 --- build.gradle | 4 ++-- .../java/de/ellpeck/actuallyadditions/mod/util/AssetUtil.java | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 26dc2e6e8..0e529b7cb 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ if(hasProperty('buildnumber')){ } minecraft { - version = "1.10.2-12.18.2.2121" + version = "1.10.2-12.18.2.2166" runDir = "idea" mappings = "snapshot_20160519" @@ -45,7 +45,7 @@ repositories { dependencies { compile "net.darkhax.tesla:Tesla:1.10.2-1.2.1.49" - deobfCompile "mezz.jei:jei_1.10.2:3.13.2.360" + deobfCompile "mezz.jei:jei_1.10.2:3.13.6.387" } processResources { diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/util/AssetUtil.java b/src/main/java/de/ellpeck/actuallyadditions/mod/util/AssetUtil.java index 96a8f82a5..3f635e0b3 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/util/AssetUtil.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/util/AssetUtil.java @@ -217,8 +217,6 @@ public final class AssetUtil{ VertexBuffer render = tessy.getBuffer(); World world = Minecraft.getMinecraft().theWorld; - GlStateManager.disableFog(); - float r = color[0]; float g = color[1]; float b = color[2]; @@ -318,7 +316,5 @@ public final class AssetUtil{ GlStateManager.disableBlend(); GlStateManager.enableLighting(); GlStateManager.popMatrix(); - - GlStateManager.enableFog(); } }