diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiCoalGenerator.java b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiCoalGenerator.java index 9d3c1dd51..c30307e04 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiCoalGenerator.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiCoalGenerator.java @@ -53,7 +53,7 @@ public class GuiCoalGenerator extends AAScreen { @Override public void renderBg(GuiGraphics guiGraphics, float f, int x, int y) { - RenderSystem.setShaderTexture(0, AssetUtil.GUI_INVENTORY_LOCATION); + RenderSystem.setShaderColor(1F, 1F, 1F, 1F); guiGraphics.blit(AssetUtil.GUI_INVENTORY_LOCATION, this.leftPos, this.topPos + 93, 0, 0, 176, 86); diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiFeeder.java b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiFeeder.java index 4e482af8c..63a9bbcfa 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiFeeder.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiFeeder.java @@ -56,7 +56,6 @@ public class GuiFeeder extends AAScreen { RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F); guiGraphics.blit(AssetUtil.GUI_INVENTORY_LOCATION, this.leftPos, this.topPos + 70, 0, 0, 176, 86); - RenderSystem.setShaderTexture(0, RES_LOC); guiGraphics.blit(RES_LOC, this.leftPos, this.topPos, 0, 0, 176, 70); if (this.tileFeeder.currentTimer > 0) { diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiFermentingBarrel.java b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiFermentingBarrel.java index 2b01d9bad..c3eb7fe8b 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiFermentingBarrel.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiFermentingBarrel.java @@ -59,7 +59,6 @@ public class GuiFermentingBarrel extends AAScreen { guiGraphics.blit(AssetUtil.GUI_INVENTORY_LOCATION, this.leftPos, this.topPos + 93, 0, 0, 176, 86); - RenderSystem.setShaderTexture(0, RES_LOC); guiGraphics.blit(RES_LOC, this.leftPos, this.topPos, 0, 0, 176, 93); if (this.press.currentProcessTime > 0) { diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiMiner.java b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiMiner.java index c81ca4774..f8001e623 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiMiner.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiMiner.java @@ -53,7 +53,6 @@ public class GuiMiner extends AAScreen { guiGraphics.blit(AssetUtil.GUI_INVENTORY_LOCATION, this.leftPos, this.topPos + 93, 0, 0, 176, 86); - RenderSystem.setShaderTexture(0, RES_LOC); guiGraphics.blit(RES_LOC, this.leftPos, this.topPos, 0, 0, 176, 93); String mining = this.miner.onlyMineOres diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/SackGui.java b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/SackGui.java index 3e7a6615e..21c24bf40 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/SackGui.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/SackGui.java @@ -96,7 +96,6 @@ public class SackGui extends AAScreen { protected void renderBg(GuiGraphics guiGraphics, float partialTicks, int x, int y) { RenderSystem.setShaderColor(1F, 1F, 1F, 1F); - RenderSystem.setShaderTexture(0, AssetUtil.GUI_INVENTORY_LOCATION); guiGraphics.blit(AssetUtil.GUI_INVENTORY_LOCATION, this.leftPos, this.topPos + 90, 0, 0, 176, 86); guiGraphics.blit(this.isVoid ? RES_LOC_VOID : RES_LOC, this.leftPos, this.topPos, 0, 0, 176, 90);